This repository was archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (90 loc) · 2.71 KB
/
index.html
File metadata and controls
98 lines (90 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ff3333" />
<!-- Required Social Preview MetaTags -->
<!-- Primary Meta Tags -->
<meta name="title" content="Flagma - Country Flags With No Hassle!" />
<meta
name="description"
content="Flagma represents over 250+ countries flags at ease. Made with ❤ by Al Nahian"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://alnahian2003.github.io/flagma" />
<meta
property="og:title"
content="Flagma - Country Flags With No Hassle!"
/>
<meta
property="og:description"
content="Flagma represents over 250+ countries flags at ease. Made with ❤ by Al Nahian"
/>
<meta
property="og:image"
content="https://alnahian2003.github.io/flagma/flagma.png"
/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://alnahian2003.github.io/flagma"
/>
<meta
property="twitter:title"
content="Flagma - Country Flags With No Hassle!"
/>
<meta
property="twitter:description"
content="Flagma represents over 250+ countries flags at ease. Made with ❤ by Al Nahian"
/>
<meta
property="twitter:image"
content="https://alnahian2003.github.io/flagma/flagma.png"
/>
<!-- End of Required Social Preview MetaTags -->
<!-- Main Stylesheet -->
<link rel="stylesheet" href="style.css" />
<title>Flagma - Country Flags With No Hassle!</title>
</head>
<body>
<!-- Main Headlines -->
<header id="hdr">
<h1 id="heading">Flagma 🏳</h1>
<h2 id="sub-heading">Country Flags With No Hassle!</h2>
</header>
<!-- Main Section Starts From Here -->
<div id="topbar">
<h3 id="totalCountries"></h3>
<!-- <input
type="search"
name="search"
id="searchInput"
placeholder="Search by a Country Name..."
/> -->
</div>
<main id="main">
<div id="flags-panel">
<div id="flags"></div>
</div>
</main>
<!-- Footer -->
<footer id="footer">
<p>
© <span id="year">2022</span> -
<a
href="https://alnahian2003.github.io"
target="_blank"
rel="noopener noreferrer"
>alnahian2003</a
>
</p>
</footer>
<!-- Main JavaScript Source -->
<script src="countries.js"></script>
<script src="app.js"></script>
</body>
</html>