-
Notifications
You must be signed in to change notification settings - Fork 11
/
index2.html
55 lines (54 loc) · 1.84 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Travel</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="assets/css/index_styles.css" />
</head>
<body>
<header>
<h2 class="logo">Travel</h2>
<nav class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<section class="showcase">
<video src="assets/img/index.mp4" muted loop autoplay></video>
<div class="overlay"></div>
<div class="text">
<h2>Dreadnought</h2>
<h3>Robotics</h3>
<p>
We are a team of enthusiastic students collaborating to explore the
exciting field of robotics. With a passion for technology and a drive
to innovate, we are constantly pushing the boundaries of what is
possible. A diverse group of individuals make up our team, including
individuals with skills in software development, mechanical
engineering, and electrical engineering. We're on a journey to shape
the future of robotics, from autonomous underwater vehicles to
advanced solutions for a wide range of industries.
</p>
<a href="#">Explore</a>
</div>
<ul class="social">
<li>
<a href="#"><img src="bx bxl-instagram" /></a>
</li>
<li>
<a href="#"><img src="https://i.ibb.co/Wnxq2Nq/twitter.png" /></a>
</li>
<li>
<a href="#"><img src="https://i.ibb.co/ySwtH4B/instagram.png" /></a>
</li>
</ul>
</section>
<script src="assets/js/index_script.js"></script>
</body>
</html>