-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrontpage.html
104 lines (96 loc) · 4.84 KB
/
frontpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Furrpal</title>
<link rel="frontpage stylesheet" href="frontpage.css">
<script defer src="reviews.js"></script>
</head>
<body>
<div class="main">
<div class="navbar">
<div class="icon">
<img src="logo.png" alt="Logo" class="picture-logo">
<h2 class="logo">FurrPal</h2>
</div>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="new stuff/sos.html">Services</a></li>
<li><a href="new stuff/blog.html">Blog</a></li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Sign Up/Log in</a></li>
</ul>
</div>
</div>
<div class="content">
<h1>safe homes, <br><span>happy paws!</span></h1>
<p class="par">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quis libero obcaecati
reprehenderit, <br> expedita voluptas! Consequatur ipsum, maiores
nemo magni quisquam cum expedita explicabo impedit, <br> facere eaque deserunt, ut eius?</p>
</div>
<section class="about-section">
<h1>About Us</h1>
<p>
At Furrpal, we connect loving pet owners with trusted pet sitters who treat their furry friends like family.
Founded by passionate pet lovers, <strong>our mission is to provide peace of mind.</strong> for pet owners when they are away,
whether for a weekend getaway or a busy workday.
</p>
<p>
Whether you’re looking for trusted care or personalized services tailored to your pet’s unique needs, <strong>FurrPal is here for you.</strong>
Join a vibrant community of pet lovers who celebrate the bond between pets and their humans.
</p>
<p>
Ready to get started? Please <a href="#">Join Us Today</a> to find the perfect sitter or become part of our caring community!
</p>
</section>
<div class="about-image">
<img src="abt-us-cartoon.png" alt="Image Description" />
</div>
<div class="review-container">
<div class="review-header">
<h2>What our Customers Say</h2>
<p>Some paw-some people have used our services! Here's what they
have to say about us.</p>
</div>
<div class="review-content">
<button class="arrow" id="arrow--left">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="currentColor" viewBox="0 0 256 256">
<rect width="256" height="256" fill="none"></rect>
<line x1="216" y1="128" x2="40" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line>
<polyline points="112 56 40 128 112 200" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline>
</svg>
</button>
<div class="reviews">
<div class="review">
<div class="review__headshot">
<img src="face1.jpeg" alt="Elise Gardner">
</div>
<p class="review__name"><strong>Elise Gardner</strong></p>
<p class="review__location">Las Vegas, Nevada</p>
<div class="review__stars">
<img src="full-star.svg" alt="Star">
<img src="full-star.svg" alt="Star">
<img src="full-star.svg" alt="Star">
<img src="full-star.svg" alt="Star">
<img src="full-star.svg" alt="Star">
</div>
<p class="review__body">
Laudantium enim quasi est quidem magnam voluptate ipsam eos tempora quo necessitatibus dolor quam autem quasi reiciendis.
</p>
</div>
</div>
<button class="arrow" id="arrow--right">
<svg xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="currentColor" viewBox="0 0 256 256">
<rect width="256" height="256" fill="none"></rect>
<line x1="40" y1="128" x2="216" y2="128" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></line>
<polyline points="144 56 216 128 144 200" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="16"></polyline>
</svg>
</button>
</div>
</div>
</div>
</body>
</html>