-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 1.52 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
<!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" />
<title>Dog Generator</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h2>Doggo Viewer</h2>
<h1>Dogger Name</h1>
<span id="dog-name"> </span>
</header>
<section class="section-container">
<section class="left-column">
<section class="item">
<span>Choose your Breed!</span>
</section>
<section class="item">
<select class="breeds" name="select" id="">
<option value="starter" selected>Select me!</option>
</select>
</section>
<section class="item">
<section class="container">
<div>🐶*🐶*🐶*🐶*🐶</div>
<img
src="http://placecorgi.com/500/500"
class="dog-img"
alt="corgi"
/>
</section>
</section>
</section>
<section class="column">
<section class="item">
<span>Breed Specifications</span>
<ul>
<li id="MF">Male</li>
<li id="age">2</li>
<li id="likes">MOnkeys</li>
<li id="dislikes">Vacuum Cleaners</li>
<li id="fun-fact">Friends with a Bat named Tobey.</li>
</ul>
</section>
</section>
</section>
<script src="/main.js"></script>
</body>
</html>