-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (123 loc) · 5.13 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
117
118
119
120
121
122
123
124
125
126
127
<!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>NEXT Website</title>
<link href="style.css" rel='stylesheet' />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@700&family=Space+Mono&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar Section -->
<nav class="navbar">
<div class="navbar__container">
<a href="/" id="navbar__logo"><i class="fas fa-gem"></i>NEXT</a>
<div class="navbar__toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="navbar__menu">
<li class="navbar__item">
<a href="/" class="navbar__links">Home</a>
</li>
<li class="navbar__item">
<a href="/tech.html" class="navbar__links">Tech</a>
</li>
<li class="navbar__item">
<a href="/" class="navbar__links">Products</a>
</li>
<li class="navbar__btn">
<a href="/" class="button">Sign Up</a>
</li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<div class="main">
<div class="main__container">
<div class="main__content">
<h1>NEXT GENERATION</h1>
<h2>TECHNOLOGY</h2>
<p>See what makes us different.</p>
<button class="main__btn"><a href="/">Get Started</a></button>
</div>
<div class="main__img--container">
<img src="images/pic1.svg" alt="pic" id="main__img">
</div>
</div>
</div>
<!-- Services Section -->
<div class="services">
<h1>See what the hype is about</h1>
<div class="services__container">
<div class="services__card">
<h2>Experience Bliss</h2>
<p>AI Powered Technology</p>
<button>Get Started</button>
</div>
<div class="services__card">
<h2>Are you Ready?</h2>
<p>Take the leap</p>
<button>Get Started</button>
</div>
</div>
</div>
<!-- Footer Section -->
<div class="footer__container">
<div class="footer__links">
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>About us</h2>
<a href="/">How it Works</a>
<a href="/">Testimonials</a>
<a href="/">Careers</a>
<a href="/">Investments</a>
<a href="/">Terms of Service</a>
</div>
<div class="footer__link--items">
<h2>Contact us</h2>
<a href="/">Contact</a>
<a href="/">Support</a>
<a href="/">Destinations</a>
<a href="/">Sponsorships</a>
</div>
</div>
<div class="footer__link--wrapper">
<div class="footer__link--items">
<h2>Videos</h2>
<a href="/">Submit Video</a>
<a href="/">Ambassadors</a>
<a href="/">Agency</a>
<a href="/">Influencer</a>
</div>
<div class="footer__link--items">
<h2>Social Media</h2>
<a href="/">Instagram</a>
<a href="/">Facebook</a>
<a href="/">Youtube</a>
<a href="/">Twitter</a>
</div>
</div>
</div>
<div class="social__media">
<div class="social__media--wrap">
<div class="footer__logo">
<a href="/" id="footer__logo"><i class="fas fa-gem"></i> NEXT</a>
</div>
<p class="website__rights">NEXT 2020. All rights reserved</p>
<div class="social__icons">
<a href="/" class="social__icons--link" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="/" class="social__icons--link" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="/" class="social__icons--link" target="_blank"><i class="fab fa-youtube"></i></a>
<a href="/" class="social__icons--link" target="_blank"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>