-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
30 lines (29 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>Random User Generator</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Archivo+Narrow&family=Julius+Sans+One&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/main.css" />
<script src="js/script.js" defer></script>
</head>
<body>
<div class="main">
<h1>Random User Generator</h1>
<h5>Demo</h5>
<h2>Built with the <a href="https://randomuser.me">Random User Generator API</a></h2>
<hr />
<div class="num-users">
<label for="users">How many users would you like?</label>
<select name="users" id="users">
<option value="1">1</option>
<option value="3">3</option>
<option value="5">5</option>
</select>
</div>
<div class="random-peeps"></div>
</div>
</body>
</html>