-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
100 lines (87 loc) · 4.21 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>
<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="description" content="List of Nigeria presidents from 1960 till date" />
<meta name="keywords"
content="nigeria president profile, nigeria past and present president, list of nigeria president from 1960 till date" />
<link rel="stylesheet" href="./assets/css/index.css" />
<link rel="stylesheet" href="./assets/css/card.css" />
<!-- favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="./assets/favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="./assets/favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="./assets/favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="./assets/favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="./assets/favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="./assets/favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="./assets/favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="./assets/favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="./assets/favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="./assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png">
<link rel="manifest" href="./assets/favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./assets/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- traffic analytics -->
<script defer data-domain="nigeria-presidents.netlify.app" src="https://plausible.io/js/plausible.js"></script>
<!-- github repo star script -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<title>Nigeria President from 1960 till date</title>
</head>
<body>
<!-- *HEADER -->
<header>
<section class="top-nav">
<h1>
⭐Contribute a profile of any Nigeria president from 1960 till date⭐
</h1>
</section>
<nav>
<!-- Github star counter -->
<a class="github-button nav-items" href="https://github.com/unclebay143/nigeria-presidents"
data-color-scheme="no-preference: light; light: light; dark: dark;" data-icon="octicon-star"
data-show-count="true" aria-label="Star unclebay143/nigeria-presidents on GitHub">Github Stars</a>
<a href="https://github.com/unclebay143/nigeria-presidents#readme" class="nav-items" target="_blank"
rel="noopener noreferrer">🔗 How to contribute</a>
<a href="https://www.google.com/search?q=list+of+nigerian+presidents+from+1960+till+date" class="nav-items"
target="_blank" rel="noopener noreferrer">🔍 List of Nigeria Presidents</a>
</nav>
</header>
<!-- * HERO -->
<section class="hero">
<div class="banner-wrapper">
<!-- TODO: the current image is repeating
<img
src="./assets/portraits/Nigerian-Presidents.jpg"
width="100%"
height="100%"
/> -->
</div>
</section>
<!-- Random President Profile -->
<div class="random-president">
</div>
<main>
<p class="message"></p>
<div class="sorting-btn">
<button onclick="sortByLatest()">Sort by latest</button>
<button onclick="sortByOld()">Sort by old</button>
<button onclick="sortByRank()">Display by rank</button>
</div>
<!-- *profile section dynmic from javascript -index.js-->
<section class="profile-cards"></section>
</main>
<!-- footer -->
<footer>
Designed with 🧡 by
<a href="https://twitter.com/intent/follow?screen_name=unclebigbay143" target="_blank"
rel="noopener noreferrer">unclebigbay</a>
</footer>
<script src="./assets/js/index.js"></script>
</body>
</html>