-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (96 loc) · 3.48 KB
/
Copy pathindex.html
File metadata and controls
101 lines (96 loc) · 3.48 KB
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
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>World By Ranjan</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="fevicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="fevicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="fevicons/favicon-16x16.png"
/>
<link rel="manifest" href="fevicons/site.webmanifest" />
<!-- HTML Meta Tags -->
<meta
name="description"
content="Your ultimate resource for country knowledge. Learn about languages, customs, cuisine, and government systems. Stay informed with up-to-date news and insights."
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://ranjanworks.github.io/World/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="World By Ranjan" />
<meta
property="og:description"
content="Your ultimate resource for country knowledge. Learn about languages, customs, cuisine, and government systems. Stay informed with up-to-date news and insights."
/>
<meta
property="og:image"
content="https://opengraph.b-cdn.net/production/images/a85f83c7-c67c-4392-9380-f49728716152.png?token=pXrh7Gd56o6IC6KBo5XarFqGXY1YmdQC3GSyrtGzZmw&height=630&width=1200&expires=33262574203"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="ranjanworks.github.io" />
<meta
property="twitter:url"
content="https://ranjanworks.github.io/World/"
/>
<meta name="twitter:title" content="World By Ranjan" />
<meta
name="twitter:description"
content="Your ultimate resource for country knowledge. Learn about languages, customs, cuisine, and government systems. Stay informed with up-to-date news and insights."
/>
<meta
name="twitter:image"
content="https://opengraph.b-cdn.net/production/images/a85f83c7-c67c-4392-9380-f49728716152.png?token=pXrh7Gd56o6IC6KBo5XarFqGXY1YmdQC3GSyrtGzZmw&height=630&width=1200&expires=33262574203"
/>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
</head>
<body>
<header>
<p>Where in the World?</p>
<a href="https://github.com/RanjanWorks" target="_blank"
><img src="ranjan.png" alt="Ranjan"
/></a>
</header>
<div class="input-segment">
<div class="search-container">
<i class="material-symbols-outlined">search</i>
<input id="search" type="text" placeholder="Search for a country" />
</div>
<div class="filter-container">
<div class="dropdown">
<div class="select-text">
<span id="selectText">Filter By region </span
><i class="material-symbols-outlined">arrow_drop_down</i>
</div>
<div class="select-box">
<li>Africa</li>
<li>Americas</li>
<li>Asia</li>
<li>Europe</li>
<li>Oceania</li>
<li class="removeFilter">Remove filter</li>
</div>
</div>
</div>
</div>
<section class="country-container"></section>
<script src="script.js"></script>
</body>
</html>