-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (49 loc) · 2.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
<!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>Haptechs</title>
<link rel="icon" type="image/png" href="haptechsIcon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navigation -->
<section>
<header>
<!-- <img src="./IMG/Logo_32px.png" alt="logo"> -->
<a href="#" class="logo"><img src="./IMG/Logo_32px.png" alt="logo"></a>
<!-- Mobile Navigation -->
<div class="toggleMenu active" onclick="toggleMenu();"> </div>
<!-- Desktop Navigation -->
<ul class="navigation active">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Games</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</header>
<!-- Content -->
<div class="content">
<div class="contentBox">
<h2>Enter Whole New Worlds</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Laborum laboriosam quos voluptates repellat dolor accusantium nesciunt quidem laudantium, non similique dignissimos tempore fugit ipsam possimus architecto doloribus omnis doloremque ducimus.</p>
<a href="#">Pre-Order NOW!</a>
</div>
</div>
<!-- Social media icons using Font Awesome. Link to script is below. -->
<ul class="socials">
<li><a href="#"><i class="fab fa-facebook-f"></i></li>
<li><a href="#"><i class="fab fa-instagram"></i></i></li>
<li><a href="#"><i class="fab fa-twitter"></i></i></li>
</ul>
</section>
<!--JavaScript -->
<script src="script.js"></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/1ea93a5527.js" crossorigin="anonymous"></script>
</body>
</html>