-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Name</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="container-top-header">
<img src="./images/cat-mom.png" alt="Header Logo"
height="80px" width="80px"/>
<ul class="links">
<li><a href="#">Header Link 1</a></li>
<li><a href="#">Header Link 2</a></li>
<li><a href="#">Header Link 3</a></li>
</ul>
</div>
<div class="container-flex-header">
<div class="container-block-header">
<p id="hero-main-text">This website is awesome</p>
<p id="hero-secondary-text">This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast</p>
<button>Sign Up</button>
</div>
<img src="./images/cat-cleaning.jpg" alt="image description"
height="280px" width="420px"/>
</div>
</div>
<div class="content">
<p id="random-information">Some random information</p>
<div class="container-flex-content">
<div class="information">
<img src="./images/all-i-need-is-cat.jpg" alt="image description"/>
<p>this is some subtext under an ilustration or image</p>
</div>
<div class="information">
<img src="./images/baby-cat.jpg" alt="image description"/>
<p>this is some subtext under an ilustration or image</p>
</div>
<div class="information">
<img src="./images/egyptian-cat.jpg" alt="image description">
<p>this is some subtext under an ilustration or image</p>
</div>
<div class="information">
<img src="./images/cat-in-black-background.jpg" alt="image description"/>
<p>this is some subtext under an ilustration or image</p>
</div>
</div>
<div class="container-quote">
<p id="quote">This is an ispiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice.</p>
<p id="quote-author">-Thor, God of Thunder</p>
</div>
<div class="container-sign-up">
<div class="text-sign-up">
<p id="text-bold">Call to action! It's time!</p>
<p id="text-regular">Sign up for our product by clicking that button right over there!</p>
</div>
<button>Sign up</button>
</div>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2021</p>
</div>
</body>
</html>