-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (101 loc) · 3.6 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
<!DOCTYPE html>
<html>
<head>
<title>Pet | PET-WEBSITE</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header id="top_header" class="clearfix">
<div class="wrapper">
<h1 class="logo">Adopt <span>A</span> Dog</h1>
<nav id="main_nav">
<a href="#">Find a Pet</a>
<a href="#">Pet Care & Health</a>
<a href="#">Adoption Info</a>
<a href="#">Log In</a>
</nav>
</div>
</header>
<section id="banner" class="clearfix">
<div id="banner_content_wrapper">
<div id="poster">
<img src="images/pets/bingo.jpg" alt="Bingo Poster" class="featured_image">
</div>
<div id="content">
<h2 class="title">Bingo</h2>
<div class="ratings">
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star"></i>
<i class="fa fa-star inactive"></i>
</div>
<p class="description">Bingo is a 10-month-old Australian Kelpie mix rescued from the Ramona Animal Shelter. While at the shelter, he was kenneled with two small Chihuahuas. After being at the shelter for a month, Alex pulled him to give him a chance at a better life.</p>
<p class="info">BIO <span>|</span> Breed: Australian Kelpie <span>|</span> Color: Brown & Black & White <span>|</span> Age: 12 </p>
</div>
</div>
</section>
<section id="top_pets" class="clearfix">
<div class="wrapper">
<header class="clearfix">
<h2>Popular Pets</h2>
<p class="view_more">View All Pets</p>
</header>
<div class="row">
<div class="post">
<img src="images/pets/deer.jpg" alt="The Martian">
<h3 class="title">Beautiful Deer</h3>
<p class="post_info">BIO | Color Tin</p>
</div>
<div class="post">
<img src="images/pets/horses.jpg" alt="Inside Out">
<h3 class="title">Horses</h3>
<p class="post_info">BIO | Color Brown & White</p>
</div>
<div class="post">
<img src="images/pets/parrot.jpg" alt="Jurassic World">
<h3 class="title">Talkative Parrot</h3>
<p class="post_info">BIO | 1.34 Kgs</p>
</div>
<div class="post">
<img src="images/pets/monkey.jpg" alt="Mad Max">
<h3 class="title">Mad Monkey</h3>
<p class="post_info">BIO | Violent</p>
</div>
<div class="post">
<img src="images/pets/owl.jpg" alt="Star Wars">
<h3 class="title">Mysterious Owl</h3>
<p class="post_info">BIO | Killer</p>
</div>
<div class="post">
<img src="images/pets/tom.jpg" alt="The Avengers">
<h3 class="title">Friendly Tom</h3>
<p class="post_info">BIO | Labrador Retriever</p>
</div>
</div>
</div>
</section>
<section id="newsletter">
<div class="newsletter_inner">
<h2>Subscribe to get latest updates about Bingo.</h2>
<div class="sign_up_form">
<input type="text" placeholder="First Name">
<input type="email" placeholder="Email Address">
<button class="button">Subscribe</button>
</div>
</div>
</section>
<footer id="main_footer">
<p class="logo">Adopt <span>A</span> Dog</p>
<p class="copyright">©2016 Christian Onyango. All Rights Reserved.</p>
<div class="links">
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</div>
</footer>
</body>
</html>