-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Users API Practice Project by Monir H</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/simple-line-icons/2.5.5/css/simple-line-icons.min.css" />
<link rel="stylesheet" type="text/css" href="assets/style.css" media="all" />
</head>
<body>
<header>
<h1>Random Users</h1>
<p>JavaScript API Practice Project by Monir H</p>
</header>
<main class="random-user">
<div class="row" id="results"></div>
<div class="text-center">
<button id="loadmore">Load More</button>
</div>
</main>
<footer>
<p>Copyright © 2021 All rights reserved | This template is made with <span class="icons icon-heart"></span> by <a href="http://monirh.com">Monir H</a></p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="assets/app.js"></script>
</body>
</html>