-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 2.32 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Landing Page</title>
</head>
<body>
<section class="section-header">
<header>
<div class="header-logo">Pet.care
</div>
<div class="nav-bar">
<a href="index.html">Home</a>
<a href="about.html">Services</a>
<a href="contact.html">Training</a>
<a href="contact.html">Sign up</a>
</header>
</section>
<section class="section1">
<div class="main-text">
<h2>Care of your Little pets.</h2>
<p>
We believe finding a reliable, professional pets sitter should be
easy.<br> So we make sure every member of your Family.
</p>
</div>
<div class="images">
<div class="cat1">
<img src="./images/cat.png" alt="a cute cat">
</div>
<div class="cat2">
<img src="./images/cat2.jpg" alt="a cute cat">
</div>
</div>
</section>
<section class="section2">
<div>
<h2>How to take care of your pets</h2>
<p>As a parent, leaving your pets at home while you are on vacation or at work can be stressful.<br>
Finding someone to take care of your pets may seem easy, but it can really be a
hassle. We all know that anyone can walk a dog or pet sit, but what if your furry friends has other need?
</p>
</div>
<div>
<img src="images/cat2.jpg" alt="a cute cat">
</div>
</section>
<section class="section3">
<div>
<h2>This is my favorite Pet care agency.</h2>
<p>The only place I will leave my little girl when I go away. The only issue is she doesn't want to
come home because she is having so much fun. The best part is the accessibility to the staff
and pictures on Facebook of playtime. I could not feel more confident in who is taking care of my pup while being out of town.</p>
<h3>-Adrian Gaile Pedrezuela</h3>
</div>
<div>
<img src="images/profile.jpg" alt="">
</div>
</section>
<footer>
<div>Copyright © The Odin Project 2021</div>
</footer>
</body>
</html>