-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (101 loc) · 3.29 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
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Caladea&family=Charmonman&family=Englebert&family=Faster+One&family=Finger+Paint&family=Fjord+One&family=Goldman&family=Katibeh&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Landing Page</title>
</head>
<body>
<nav class="nav">
<div class="logo"><a href="#"> T-Go </a></div>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<header class="header">
<div class="header-text">
<h1>Technology is Awesome</h1>
<p>
What the new technology does is create new opportunities to do a job
that customers want done. We are changing the world with Technology
</p>
<button class="btn"><a href="#"> Sign up</a></button>
</div>
<img
class="header-image"
src="Images\box1.jpg"
alt="A hand holding a phone"
/>
</header>
<main class="sections">
<h2>Tech, the new world!</h2>
<section class="sect-1">
<figure class="box">
<img src="Images\box5.jpg" alt="" />
<figcaption>Bitcoin Mining</figcaption>
</figure>
<figure class="box">
<img src="Images\box2.jpg" alt="" />
<figcaption>Tech hole</figcaption>
</figure>
<figure class="box">
<img src="Images\box3.jpg" alt="" />
<figcaption>An Iphone</figcaption>
</figure>
<figure class="box">
<img src="Images\box4.jpg" alt="" />
<figcaption>A Robot</figcaption>
</figure>
</section>
<section class="sect-2">
<blockquote class="blockquote">
I think that's the best piece of advice: <br />
Constantly think about how you could be doing things better and
questioning yourself.
<div><cite class="cite">Elon Musk, CEO Tesla.</cite></div>
</blockquote>
</section>
<section class="sect-3">
<div class="sect-box">
<div>
<h2>Call to Action! It's time</h2>
<p>
Investing in tomorrow's technology today is more critical than
ever...
</p>
</div>
<div class="btn">
<button><a href="">Sign up</a></button>
</div>
</div>
</section>
</main>
<footer class="footer">
Copyright © 2022 Badbatunde <br />
<a href="https://github.com/Badbatunde/Landing-page" target="_blank"
>Github</a
>
||
<a href="https://mobile.twitter.com/badbatunde" target="_blank"
>Twitter</a
>
||
<a href="mailto:[email protected]" target="_blank">Mail</a>
</footer>
<div class="follow-me">
<button>
<a href="tel:+2347033579911" target="_blank">Contact Me</a>
</button>
</div>
</body>
</html>