forked from skillcrush/js-l12-practice-exercise-01
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 915 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Practice-01-starter</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/index.js" defer></script>
</head>
<body>
<div class="main">
<h1>Random User Generator!</h1>
<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>