-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 3.43 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
<!DOCTYPE html>
<html>
<head>
<title>Day 7 In Class Work</title>
<link rel="stylesheet" href="style.css"/>
<script src="https://kit.fontawesome.com/b6dc0eca95.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<a href="index.html">
<img class="logo" src="dwarf.png"/>
</a>
<div class="home">
<a href="index.html">
<i class="fa-solid fa-house fa-2x"></i>
</a>
</div>
<div>
<h1 class="navlinks"><a href="products.html">Products</a></h1>
</div>
<div>
<h1 class="navLinks"><a href="about.html">About</a></h1>
</div>
<div id="contact">
<h1 class="navLinks"><a href="contact.html">Contact</a></h1>
</div>
</nav>
<div class="chat">
<i class="fa-brands fa-rocketchat fa-2x"></i>
</div>
<div class="topBumper"></div>
<div class="filler">
<h1>Dwarven Dads</h1>
<h2>The Fakest Web Design Company You'll Ever See</h2>
</div>
<div>
<div class="products_home">
<img class="home_image" src="webDesign.png"/>
<div class="wd_product_text">
<h4>Web Design</h4>
<p id="twok">The 2000's called and wants its website back. You should hire us to make it look modern and trendy!</p>
</div>
</div>
<div class="products_home">
<div class="dp_product_text">
<h4>Dog Petting</h4>
<p id="neglected">We also pet your dog when they say they are neglected and you can't be bothered to give them the affection they deserve.</p>
</div>
<img class="home_image" src="dogPets.png"/>
</div>
<div class="products_home">
<img class="home_image" src="cat.png"/>
<div class="cat_product_text">
<h4>Funny Cat Photos</h4>
<p id="funny">Our cat photos are the funniest! *These are not our cats, but they can has cheezburgers.*</p>
</div>
</div>
<div class="products_home">
<div class="hs_product_text">
<h4>Handshake Classes</h4>
<p id="pops">Did you dad raise you with the idea that "you can tell a lot about a person by their handshake"? Yea, Ours too. But if your handshake is like holding a dead fish, we've got you covered! Take our firm handshake classes and make "the right" impression and make your pops proud.</p>
</div>
<img class="home_image" src="handshake.png"/>
</div>
<div class="products_home">
<img class="home_image" src="dadjokes.png"/>
<div class="dad_product_text">
<h4>Really Bad Dad Jokes</h4>
<p id="joke">Our dad jokes are the worst! Why did the math book look so sad at the company party? -- Because it had too many problems and couldn't find its solutions department!<p>
</div>
</div>
</div>
<footer>
<div class="foot">
<p> © 2021 Dwarven Dads, Inc.</p>
</div>
</footer>
</body>
</html>