-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (58 loc) · 2.04 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
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Dog Shelter</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>The Shed End</h1>
<span class="motto-tag">Shelter for dogs</span>
</header>
<main class="section-container">
<section class='column' id="left-column">
<section class="item meet-our-dogs">
<span class="pet-characteristics">Meet our Dogs</span>
</section>
<section class="item">
<select class="breeds">
<option value="starter" selected>Select a Breed</option>
</select>
</section>
<section class="item">
<section class="img-container">
<img
src="img/chuwawa.jpg"
class='dog-img'
alt='cute corgi for the homepage'
/>
</section>
</section>
</section>
<section class='column'>
<section class="item meet-our-dogs">
<span class="pet-characteristics dog-profile">Dog Profile</span>
</section>
<div class="list-items">
<ul>
<p>
<li id="dog-name">Name: Sunshine</li>
<li id="MF">Sex: Female</li>
<li id="age">Age: 4</li>
<li id="likes">Likes: Ham, briskets and cheese</li>
<li id="dislikes">Dislikes: Baths, Entropy</li>
<li id="fun-fact">Fun Fact: Can jump and dance to any beat.</li>
</p>
</ul>
</div>
</section>
</main>
<footer>
<p class="footer">©2023 The Shed Company</p>
</footer>
<script src="js/main.js"></script>
</body>
</html>