-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing-Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero">
<div class="header">
<div class="logo">GoPetMe</div>
<ul>
<li><a href="">Treat Registry</a></li>
<li><a href="">Toy Registry</a></li>
<li><a href="">Christmas List</a></li>
</ul>
</div>
<div class="top">
<div class="herocontent">
<h1>Help us raise doggy dollars!</h1>
<p>We're two doggos trying to raise money for some important things. Anything helps and is appreciated!</p>
<button class="topbutton"><a href="">Sign up</a></button>
</div>
<img class="topimg" src="./photos/hero.jpg" alt="Two cute dogs playing" height="175px" width="350px">
</div>
</div>
<div class="middle">
<h2>For each dollar you donate:</h2>
<div class="middlecontent">
<div class="wrap">
<div class="box"><img src="./photos/food.jpg" alt="Another cute dog" height="150px" width="150px"></div>
<p>We get treats and foooooooood!!!!</p>
</div>
<div class="wrap">
<div class="box"><img src="./photos/toys.jpg" alt="Two pups playing" height="150px" width="150px"></div>
<p>We'll also be able to get some new tugs and bones!</p>
</div>
<div class="wrap">
<div class="box"><img src="./photos/groomers.jpg" alt="Not so happy dog because they have to go to groomers" height="150px" width="150px"></div>
<p>Neither of us may like it but we'll allow our owner to take us to get groomed.</p>
</div>
<div class="wrap">
<div class="box"><img src="./photos/more_food.PNG" alt="Cute husky winking" height="150px" width="150px"></div>
<p>Also did we mention foods and treats?!?!</p>
</div>
</div>
</div>
<div class="quote">
<p>Any doggy dollars donated will be greatly appreciated by a little floof and a pupper upper like ourselves to enjoy some super great things!</p>
<p class="author">-Floof and Pupper Upper</p>
</div>
<div class="bottom">
<div class="bottomtext">
<h3>Jump to action it's time!</h3>
<p>Donate a doggy dollar today by clicking that button right over there!</p>
</div>
<button class="bottombutton"><a href="">Sign up</a></button>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2021</p>
</div>
</body>
</html>