-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.25 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
53
54
<!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">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.0-alpha1/css/bootstrap.min.css"rel="nofollow" integrity="sha384-r4NyP46KrjDleawBgD5tp8Y7UzmLA05oM1iAEQ17CSuDqnUK2+k9luXQOfXJCJ4I" crossorigin="anonymous">
</head>
<body>
<header>
<h1>Dog Generator</h1>
<span id="dog-name">Dougie the Default Doggo</span>
</header>
<section class="section-container">
<section class = 'column' id="left-column">
<section class="item">
<span>Choose your Breed!</span>
</section>
<section class="item">
<select class="breeds">
<option value="starter" selected>Select Me!</option>
</select>
</section>
<section class="item">
<section class="img-container">
<section class="container">
<div>🐶    🐶    🐶</div>
<img
src="https://iheartdogs.com/wp-content/uploads/2021/02/Gen_the_Corgi_featured.png"
class = 'dog-img'
alt = 'cute corgi for the homepage'
/>
</section>
</section>
</section>
</section>
<section class = 'column'>
<section class="item">
<span>Doggo Characteristics</span>
<ul>
<li id="MF">Gender: Male</li>
<li id="age">Age: 2</li>
<li id="likes">Likes: Ham, String Cheese</li>
<li id="dislikes">Dislikes: Baths, Entropy</li>
<li id="fun-fact">Additional Info: On every walk, has to visit that one spot where they found a piece of cheese on the ground six months ago.</li>
</ul>
</section>
</section>
</section>
<script src="main.js"></script>
</body>
</html>