-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (123 loc) · 4.41 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
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
<!DOCTYPE html>
<html>
<head>
<title>AirCnC - Rent a Cat or Dog.</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,600' rel='stylesheet' type='text/css'>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header>
<div class="container">
<img src="images/logo.png" alt="AirCnC Logo" class="logo">
</div>
</header>
<div class="hero">
<div class="container">
<img src="images/dog-hero-image.png" alt="Terry Golden Retriever">
</div>
</div>
<section class="info">
<div class="container">
<div class="profile column">
<div class="owner-details column">
<img src="images/chris-castiglione.png" alt="Owner image">
<h2 class="relationship">Owner</h2>
<h2 class="name">Chris</h2>
</div><!-- .owner-details -->
<div class="clearfix pet-details column">
<h1>Chris, Golden Retriever</h1>
<p class="location">New York, NY, United States</p>
<div class="icons column">
<div class="icon">
<img src="images/icons/mute.svg" alt="Doesn't Bark">
<h5>Doesn't Bark</h5>
</div><!-- .icon -->
<div class="icon">
<img src="images/icons/baby.svg" alt="Kid Friendly">
<h5>Kid Friendly</h5>
</div><!-- .icon -->
<div class="icon">
<img src="images/icons/lightning.svg" alt="Energetic">
<h5>Energetic</h5>
</div><!-- .icon -->
</div>
</div><!-- .pet-details -->
</div><!-- .profile -->
<div class="booking column">
<h2>$30 <span class="time">Per Day</span></h2>
<a href="#" class="button">Request to Book</a>
</div><!-- .booking -->
</div><!-- .container -->
</section><!-- .info -->
<div class="details">
<div class="container">
<div class="column main">
<section class="about">
<h3>About this Dog</h3>
<p>
The Golden Retriever is a large-sized breed of dog bred as gun dogs to retrieve shot waterfowl such as ducks and upland game birds during hunting and shooting parties and were named 'retriever' because of their ability to retrieve shot game undamaged. Golden Retrievers have an instinctive lover of water and are easy to train to basic or advanced obedience standards.
</p>
<a href="#" class="contact">Contact Owner</a>
</section>
<section class="care clearfix">
<div class="column">
<h4>Care</h4>
</div>
<div class="column">
<div class="likes">
<ul>
<li>
Diet: <strong>Dog Food</strong>
</li>
<li>
Favorite Toy: <strong>A Frisbee</strong>
</li>
</ul>
</div><!-- likes -->
</div>
<div class="column">
<div class="check-in-out">
<ul>
<li>
Check in: <strong>8:00 AM</strong> or <strong>1:00 PM</strong>
</li>
<li>
Check out: <strong>12:00 PM</strong> or <strong>5:00 PM</strong>
</li>
</ul>
</div>
</div>
</section>
<section class="games clearfix">
<div class="column">
<h4>Games</h4>
</div>
<div class="column">
<ul>
<li>
<img src="images/icons/frisbee.svg" alt="Frisbee">
<span>Frisbee</span>
</li>
<li>
<img src="images/icons/pool.svg" alt="Swimming">
<span>Swimming</span>
</li>
<li>
<img src="images/icons/bone.svg" alt="Fetch">
<span>Fetch</span>
</li>
</ul>
</div>
</section>
<section class="photos">
<img src="images/dog-1.jpg" alt="Golden Retriever Photo 1">
<img src="images/dog-2.jpg" alt="Golden Retriever Photo 2">
<img src="images/dog-3.jpg" alt="Golden Retriever Photo 3">
</section>
</div><!-- .main -->
</div><!-- .container -->
</div><!-- .details -->
</body>
</html>