-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
149 lines (144 loc) · 5.1 KB
/
Copy pathindex.html
File metadata and controls
149 lines (144 loc) · 5.1 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!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>Document</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Oswald:400,700" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Happy Valley Shelter</h1>
</header>
<h2>Adopt a Dog</h2>
<p>If you are interested in adopting one of our animals, please fill out our <a href="#">online adoption form.</a>
</p>
<div id="dogs">
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/beans.jpg" alt="beans">
<h3>Beans</h3>
<ul class="dogattributes">
<li>Adult</li>
<li>Male</li>
<li>Medium</li>
<li>Easygoing</li>
<li>Good with cats</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/boston-terrier.jpg" alt="Zelda">
<h3>Zelda</h3>
<ul class="dogattributes">
<li>Senior</li>
<li>Female</li>
<li>Small</li>
<li>Easygoing</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/boxer.jpg" alt="Baby">
<h3>Baby</h3>
<ul class="dogattributes">
<li>Young</li>
<li>Female</li>
<li>Large</li>
<li>Energetic</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/golden-lab.jpg" alt="Tom-Tom">
<h3>Tom-Tom</h3>
<ul class="dogattributes">
<li>Young</li>
<li>Male</li>
<li>Large</li>
<li>Energetic</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
<li>Good with cats</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/little-dog.jpg" alt="Marco">
<h3>Marco</h3>
<ul class="dogattributes">
<li>Adult</li>
<li>Male</li>
<li>Small</li>
<li>Energetic</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/old-shaggy.jpg" alt="Shackleton">
<h3>Shackleton</h3>
<ul class="dogattributes">
<li>Adult</li>
<li>Male</li>
<li>Medium</li>
<li>Easygoing</li>
<li>Energetic</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
<li>Good with cats</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/shih-tzu.jpg" alt="Midge">
<h3>Midge</h3>
<ul class="dogattributes">
<li>Adult</li>
<li>Female</li>
<li>Small</li>
<li>Easygoing</li>
<li>Good with kids</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/young-bulldog.jpg" alt="Ladybird">
<h3>Ladybird</h3>
<ul class="dogattributes">
<li>Senior</li>
<li>Female</li>
<li>Large</li>
<li>Easygoing</li>
<li>Energetic</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
<li>Good with cats</li>
</ul>
</div>
<div class="dogprofile">
<img class="dogpic" src="../dog-adoption-cbmosley/starter_files/images/young-peppy.jpg" alt="Mina">
<h3>Mina</h3>
<ul class="dogattributes">
<li>Puppy</li>
<li>Female</li>
<li>Medium</li>
<li>Energetic</li>
<li>Good with kids</li>
<li>Good with other dogs</li>
<li>Good with cats</li>
</ul>
</div>
</div>
<footer>
<div class="footers">
<div class="Donate Format">
<h2>Donate</h2>
</div>
<div class="Volunteer Format">
<h2>Volunteer</h2>
</div>
<div class="Our_location Format">
<h2>Our location</h2>
</div>
</div>
</footer>
</body>
</html>