-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (95 loc) · 3.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<!-- HTML Meta Tags -->
<title>View Images</title>
<meta
name="description"
content="هذا الموقع يقوم بعرض الصور عن طريق الرابط الخاص بها وعرضها في صفحة منبثقة وتحميلها"
/>
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="View Images" />
<meta
itemprop="description"
content="هذا الموقع يقوم بعرض الصور عن طريق الرابط الخاص بها وعرضها في صفحة منبثقة وتحميلها"
/>
<meta
itemprop="image"
content="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
/>
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://download-view-images.netlify.app"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="View Images" />
<meta
property="og:description"
content="هذا الموقع يقوم بعرض الصور عن طريق الرابط الخاص بها وعرضها في صفحة منبثقة وتحميلها"
/>
<meta
property="og:image"
content="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="View Images" />
<meta
name="twitter:description"
content="هذا الموقع يقوم بعرض الصور عن طريق الرابط الخاص بها وعرضها في صفحة منبثقة وتحميلها"
/>
<meta
name="twitter:image"
content="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
/>
<!-- Meta Tags Generated via http://heymeta.com -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
class="page-icon"
rel="shortcut icon"
href="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="main">
<img
src="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
alt=""
/>
</div>
<div class="main-2">
<div class="top">
<input type="text" placeholder="Enter image url" autofocus />
<button class="fun">
View
<img
id="small"
src="https://cdn-icons-png.flaticon.com/512/2659/2659360.png"
alt=""
/>
</button>
</div>
<div class="bottom">
<a class="examples" href="Examples.txt" target="_blank"
>Examples Links</a
>
</div>
</div>
<div class="updates">
<p>Soon... we will add Download button.</p>
<p>
Made with ❤️ by<a href="https://www.instagram.com/alirafatartist"
>Ali Rafat</a
>©
</p>
</div>
</div>
<script src="main.js"></script>
</body>
</html>