-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (76 loc) · 3.15 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
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<div class="navbar">
<img src="logo.webp" class="header-logo">
<div class="hl1">Documentation</div>
<div class="hl2">About</div>
<div class="hl3">Contact</div>
</div>
<div class="hero-section">
<div class="hero-section1">
<div class="hero-words">This website is awesome</div>
<div class="hero-subwords"> website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast</div>
<button class="sign-up">Sign up</button>
</div>
<div class="hero-section2">
<img src="image.jpeg">
</div>
</div>
</header>
<main class="main-content">
<div class="information-section">
<div class="main-section-heading">
Some random information
</div>
<div class="main-section-content">
<div class="img-info-container">
<img src="img1.webp" class="img">
<div class="img-text">This is some subtext under an illustration or image</div>
</div>
<div class="img-info-container">
<img src="img2.webp" class="img">
<div class="img-text">This is some subtext under an illustration or image</div>
</div>
<div class="img-info-container">
<img src="img3.webp" class="img">
<div class="img-text">This is some subtext under an illustration or image</div>
</div>
<div class="img-info-container">
<img src="img4.webp" class="img">
<div class="img-text">This is some subtext under an illustration or image</div>
</div>
</div>
</div>
<div class="quote-section">
<div class="quote">
This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will atually read it. Who knows? All I know that it looks nice.
</div>
<div class="quote-teller">
<strong>Thor, God of Thunder</strong>
</div>
</div>
<div class="action-section">
<div class="action-place">
<div class="action-place1">
<div class="action-words">Call to Action! It's time!</div>
<div class="action-subwords">Sign up for our product by clicking that button right over there!</div>
</div>
<div class="action-place2">
<button class="sign-up2">Sign up</button>
</div>
</div>
</div>
</main>
<footer class="footer">
<h5 class="copyright">Copyright © The Odin Project 2024</h5>
</footer>
</body>
</html>