-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (58 loc) · 1.9 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
<!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">
<meta name="description" content="AirC&C is the premiere site renting cute cats and canines">
<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>
<section class="navbar">
<div class="logo">
<div class= "vertline">
<h1>aircnc</h1>
</div>
</div>
</section> <!--navbar-->
<section class="dogImage">
<img src="images/dog-1.jpg" alt="Dog Image">
</section> <!--dogImage-->
<div class= "container">
<section class="profile">
<section class="ownerDetails">
<img src="images/chris-castiglione.png" alt="ownerImage">
<h2 class="relationship">Owner</h2>
<h2 class="name">Chris</h2>
</section><!--ownerDetails-->
<section class="dogDetails">
<h1>Chris, Golden Retriever</h1>
<h2 class="location">New York, NY, United States</h2>
<section class="icons">
<aside>
<img src="images/icons/mute.svg" class= "noBark" alt="mute icon">
<figcaption>Doesn't Bark</figcaption>
</aside>
<aside>
<img src="images/icons/baby.svg" class= "childFriendly" alt="mute icon">
<figcaption>Child Friendly</figcaption>
</aside>
<aside>
<img src="images/icons/lightning.svg" class= "energetic" alt="mute icon">
<figcaption>Energetic</figcaption>
</aside>
</section> <!--icons-->
</section><!--dogDetails-->
<section class="booking">
<h2>
<b>$30</b> per day
</h2>
<button>
Request to Book
</button>
</section><!--booking-->
</section><!--profile-->
</div><!--container-->
</body>
</html>