-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini-bios.html
45 lines (41 loc) · 1.35 KB
/
mini-bios.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SPICE GIRLS API DEMO</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section>
<h1>Get a Spice Girl Bio</h1>
<select title="select-spicegirl" name="select1">
<option value="Emma">Emma</option>
<option value="Geri">Geri</option>
<option value="Mel B">Mel B</option>
<option value="Mel C">Mel C</option>
<option value="Victoria">Victoria</option>
</select>
<button type="button" id="btn1" name="button1">Get Bio</button>
<article>
<div class="one-line">
<span class="one-line">Name: </span><h2 class="one-line"></h2>
</div>
<div>
<span class="one-line">Nickname: </span><h3 class="one-line"></h3>
</div>
<div>
<span class="one-line">Birth Date: </span><h4 class="one-line"></h4>
</div>
<div>
<span class="one-line">Birth Place: </span><h5 class="one-line"></h5>
</div>
</article>
</section>
<script type="text/javascript" src="js/mini-bios.js"></script>
</body>
</html>