-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (45 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@300;400;500;600;700&family=Varela+Round&display=swap" rel="stylesheet">
<title> Landing Page </title>
</head>
<body>
<header>
<h1>Landing Page</h1>
<section class="menu">
<ul class="menu-list">
<li>Home</li>
<li class="active">Products</li>
<li>About Us</li>
<li>Contact</li>
</ul>
<button>
<i class="fas fa-times"></i>
<i class="fas fa-bars"></i>
</button>
</section>
</header>
<section class="main">
<section class="left">
<p class="title">Information Technology</p>
<p class="msg">Information technology (IT) is the use of any computers, storage, networking and other physical devices, infrastructure and processes to create, process, store, secure and exchange all forms of electronic data.</p>
<button class="cta">Learn More</button>
</section>
<section class="right">
<img src="img.svg" alt="Landing Image">
</section>
</section>
<script>
var menu = document.querySelector('.menu');
var menuBtn = document.querySelector('.menu button');
menuBtn.addEventListener('click', () => {
menu.classList.toggle('opened')
})
</script>
</body>
</html>