-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (92 loc) · 3.62 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap" rel="stylesheet">
</head>
<body>
<section class="hero">
<div class="wrapper">
<header>
<div class="logo"><a href="#">' Logo '</a></div>
<nav class="nav-container">
<ul class="nav-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>
</nav>
</header>
<div class="hero-wrapper">
<div class="text-container">
<h1 class="hero-title">This website is wavvvvy.</h1>
<p class="hero-subtitle">Built along side my bestie ChatGPT</p>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstley" target="_blank" rel="noopener noreferrer">
<button class="cta-btn hero-button">Stay hydrated</button>
</a>
</div>
<div class="img-container">
<img class="hero-img" src="../odin-landing-page/images/starrynight.png"
alt="falling cat"
>
</div>
</div>
</div>
</section>
<section class="info">
<div class="wrapper">
<div class="info-text">source of life</div>
<div class="info-wrapper">
<div class="info-img-container">
<img class="info-img" src="../odin-landing-page/images/abstract1.png"
alt="abstract1">
</div>
<div class="info-img-container">
<img class="info-img" src="../odin-landing-page/images/abstract2.png"
alt="abstract2">
</div>
<div class="info-img-container">
<img class="info-img" src="../odin-landing-page/images/abstract3.png"
alt="abstract3">
</div>
</div>
</div>
</section>
<section class="quote">
<div class="wrapper">
<div class="quote-container">
<div class="quote-text">
<p>Starry night above, <br>
A fish leaps, the water laughs, <br>
Wet cosmic ballet.
</p>
</div>
<div class="author">
- ChatGPT
</div>
</div>
</div>
</section>
<section class="footer">
<div class="wrapper">
<div class="footer-container">
<div class="cta-text-container">
<div class="cta-text">
Call to action! It's time.
</div>
<div class="cta-subtext">
Join now to stay hydrated!
</div>
</div>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstley" target="_blank" rel="noopener noreferrer">
<button class="cta-btn second">Join now</button>
</a>
</div>
</div>
</section>
</body>
</html>