-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (72 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- MOBILE SPECIFIC -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- PAGE TITLE HERE -->
<title>SpaceZ Landing Page</title>
<!-- FONTAWESOME STYLE SHEET -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- MAIN STYLE SHEET -->
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- GOOGLE FONTS LINK-->
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<navbar class="navbar">
<li class="nav-link"><a href="#">SPACEZ</a></li>
<li class="nav-link"><a href="#">Home</a></li>
<li class="nav-link"><a href="#">About</a></li>
<li class="nav-link"><a href="#">Job</a></li>
<li class="nav-link"><a href="#">Contact</a></li>
</navbar>
<!-- Navbar Ends -->
<!-- Hero Section Starts -->
<div class="hero-section">
<div class="row">
<div class="col-6">
<!-- Hero Section Content -->
<div class="hero-section-content">
<h1>WELCOME</h1>
<h3>To SpaceZ World</h3>
<hr>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam
perspiciatis facilis beatae laudantium quidem enim sit sequi!
</p>
<button class="btn btn1">EXPLORE</button>
<button class="btn btn2">WATCH US</button>
<!-- Social Media links -->
<div class="social-media">
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin"></i>
</div>
<!-- Social Media links End-->
</div>
<!-- Hero Section Content Ends -->
</div>
<div class="col-6">
<!-- Hero Section Image -->
<div class="hero-section-img">
<img src="images/astronaut.png" alt="">
</div>
<!-- Hero Section Image Ends -->
</div>
</div>
</div>
<!-- Hero Section Ends -->
<!-- Footer Starts -->
<footer class="footer">
<li class="footer-link">© SpaceZ, All rights reserved</li>
<li class="footer-link"><a class="link" href="#">Terms</a></li>
<li class="footer-link"><a class="link" href="#">Security</a></li>
<li class="footer-link"><a class="link" href="#">Privacy Policy</a></li>
</footer>
<!-- Footer Ends -->
</body>
</html>