forked from shuklamaneesh23/TRACEROUTE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
traceroute.html
61 lines (56 loc) · 1.72 KB
/
traceroute.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Traceroute</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="navbar">
<img src="logo.png" class="logo">
<nav>
<ul id="menulist">
<li><a href="">LOGIN</a></li>
<li><a href="">SIGN_UP</a></li>
<li><a href="">OUR SERVICES</a></li>
<li><a href="">CONTACT US</a></li>
</ul>
</nav>
<img src="menu.svg" class="menu-icon" onclick="togglemenu()">
</div>
<div class="row">
<div class="col-1">
<h2><br>Traceroute</h2>
<h3>Trace your path,find your adventure.</h3>
<p>Every second matters.</p>
<h4>Free of cost!</h4>
<button type="button">SignUp Now<img src="arrow.png">
</button>
</div>
<div class="col-2">
<img src="logo.png" class="control" >
<!-- <div class="color-box"></div> -->
</div>
</div>
<div class="social-links">
<img src="fb.png">
<img src="ig.png">
<img src="tw.png">
</div>
</div>
<script>
var menuList=document.getElementById("menuList");
menuList.style.maxHeight="0px";
function togglemenu(){
if (menuList.style.maxHeight=="0px"){
menuList.style.maxHeight="130px";
}
else {
menuList.style.maxHeight="0px";
}
}
</script>
</body>
</html>