-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (77 loc) · 2.89 KB
/
index.html
File metadata and controls
88 lines (77 loc) · 2.89 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&family=Barlow:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Project tracking intro component</title>
</head>
<body>
<div id="top-right-block"></div>
<nav>
<div class="container">
<div class="logo">
<a href="#"><img src="./images/logo.svg" alt="logo" width="auto" height="auto"></a>
</div>
<div class="navbar" onclick="hideHam()">
<div class="icon-bar" onclick="Show()" id="ham">
<i></i>
<i></i>
<i></i>
</div>
<ul id="nav-lists">
<li class="close"><span onclick="Hide()">×</span></li>
<!-- <div class="mobile-menu-wrapper"> -->
<li class="mobile-bg"><a href="#">Product</a></li>
<li class="mobile-bg"><a href="#">Features</a></li>
<li class="mobile-bg"><a href="#">Pricing</a></li>
<div class="dot-wrapper">
<div class="dot"></div>
</div>
<li class="fade"><a href="#">Login</a></li>
<!-- </div> -->
</ul>
</div>
</div>
</nav>
<main>
<div class="main-flex">
<div class="left-side animate__animated animate__fadeInLeft">
<p class="top-half"><span class="circle">New</span>
Monograph Dashboard
</p>
<p class="main-text">Powerful insights into your team</p>
<p class="body-text">Project planning and time tracking for agile teams
</p>
<p class="bottom-text"><button>Schedule a demo</button><span class="right-button"> to see a preview</span></p>
</div>
<div class="right-side animate__animated animate__fadeInRight">
<img src="./images/illustration-devices.svg" alt="Devices Illustration" width="auto" height="auto" id="devices">
</div>
</div>
</main>
<footer>
<p class="attribution animate__animated animate__fadeInUp">
Coded by <a href="https://github.com/SartHak-0-Sach">Sarthak Sachdev</a>.
</p>
</footer>
<script>
var navList = document.getElementById("nav-lists");
function Show() {
navList.classList.add("_Menus-show");
}
function Hide() {
navList.classList.remove("_Menus-show");
}
function hideHam() {
var element = document.getElementById("ham");
element.classList.toggle("mystyle");
}
</script>
</body>
</html>