-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (113 loc) · 5.24 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!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">
<link rel="stylesheet" href="style.css">
<title>Landing Page</title>
</head>
<body>
<header>
<div class="top-header">
<div class="logo-txt">Gekko Wrld<span>_</span></div>
<div class="nav-links">
<ul>
<li><a href="#">Home</a></li>
<li id="about"><a href="#about">About</a></li>
<li id="contact"><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<div class="header-exp">
<div class="in-cont">
<h1>Technology is awesome</h1>
<p>For the world to be a better place, innovation must be encouraged. With the help of computers, the
process may be faster!</p>
<button>Sign up</button>
</div>
<img src="./imgs/thisisengineering-raeng-8hgmG03spF4-unsplash.jpg"
alt="A projection of code infront of a person">
</div>
</header>
<section class="info">
<h2>Random information</h2>
<div class="my-card">
<div class="card-1">
<img src="./imgs/linus-mimietz-gvptKmonylk-unsplash.jpg" alt="A remote workstation setup">
<p>The work environment really matters. A well organised workstation can save you alot of time</p>
</div>
<div class="card-2">
<img src="./imgs/adem-ay-Tk9m_HP4rgQ-unsplash.jpg" alt="An image should be here">
<p>We are now more united than ever through thanks to the internet</p>
</div>
<div class="card-3">
<img src="./imgs/ilya-pavlov-OqtafYT5kTw-unsplash.jpg" alt="An image should be here">
<p>Thanks to the developers working tirelessly, we now have more power in our hands.</p>
</div>
<div class="card-4">
<img src="./imgs/alexandre-debieve-FO7JIlwjOtU-unsplash.jpg" alt="An image should be here">
<p>The speed of a computer is dependent on this circuits 💪✨</p>
</div>
</div>
</section>
<section class="quote">
<div class="quot-1">
<blockquote>
<q>It has become appallingly obvious that our technology has exceeded our humanity</q>
</blockquote>
<cite title="Click to learn more about Albert Einstein"><a href="https://en.wikipedia.org/wiki/Albert_Einstein" target="_blank">Albert Einstein, Theoretical
physicist</a>
</cite>
</div>
<div class="quot-2">
<blockquote>
<q>It is only when you go wrong that machines remind you how powerful they are</q>
</blockquote>
<cite title="Click to learn more about Clive James"><a href="https://en.wikipedia.org/wiki/Clive_James">Clive James, Broadcaster and Journalist</a></cite>
</div>
<div class="quot-3">
<blockquote>
<q>The Web as I envisaged it, we have not seen it yet. The future is still so much bigger than the
past</q>
</blockquote>
<cite title="Click to learn more about Tim Berners-Lee"><a href="https://en.wikipedia.org/wiki/Tim_Berners-Lee">Tim Berners-Lee, Inventor of the World Wide
Web and computer scientist </a></cite>
</div>
<div class="quot-4">
<blockquote>
<q>Web development is difficult, only then it is fun to do. You just have to set your standards. If it
were to be easy, would anyone do it?</q>
</blockquote>
<cite title="Click to learn more about Olowale Daniel"><a href="https://olowaledaniel.com/">Olowale Daniel, principal consultant and lead trainer with Olda Consult</a></cite>
</div>
<div class="quot-5">
<blockquote>
<q>Websites promote you 24/7: No employee will do that</q>
</blockquote>
<cite title="Click to learn more about Paul Cookson"><a href="http://paulcooksonpoet.co.uk/">Paul Cookson, poet</a></cite>
</div>
<div class="quot-6">
<blockquote>
<q>Learning to code is useful no matter what career ambitions are</q>
</blockquote>
<cite title="Click to learn more about Ariana Huffington"><a href="https:en.wikipedia.org/wiki/Ariana_Huffington">Ariana Huffington, businesswoman and
writer</a></cite>
</div>
</section>
<section class="cta">
<div class="cta-container">
<div class="cta-txt">
<h4>Call to action! It's time!</h4>
<p>Sign up for our product by clicking that button right over there</p>
</div>
<button>Sign up</button>
</div>
</section>
<footer>
<p>Copyright © Gekko Wrld 2022</p>
<p>Powered with <span>♥</span> by <a href="https://www.theodinproject.com" target="_blank"> The Odin
Project</a></p>
</footer>
</body>
</html>