-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (66 loc) · 2.35 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
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
<!DOCTYPE html>
<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="/project-tracking-intro-component/style.css">
<title>Frontend Mentor | Project tracking intro component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="bg_curve"></div>
<main class="wrapper">
<header>
<div class="logo">
<img src="/project-tracking-intro-component/images/logo.svg" alt="">
</div>
<nav class="navbar">
<div class="nav_btn">
<img src="/project-tracking-intro-component/images/icon-hamburger.svg" alt="" class="nav_open">
<img src="/project-tracking-intro-component/images/icon-close.svg" alt="" class="nav_close">
</div>
<ul>
<li><a href="#">Product</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#" class="nav_login">Login</a></li>
</ul>
</nav>
</header>
<div class="bg_illustration"></div>
<section class="content_cols">
<div class="col1 content_text">
<h3><span class="dark">New</span> Monograph Dashboard</h3>
<h1>Powerful insights into your team</h1>
<p> Project planning and time tracking for agile teams</p>
<div class="content_cta">
<a href="#" class="btn btn-fill">Schedule a demo</a>
<p class="cta_text">To see a preview</p>
</div>
</div><!-- col1-->
<div class="col2 content_img">
<img src="/project-tracking-intro-component/images/illustration-devices.svg" alt="">
</div>
</section>
<!--content cols-->
</main>
<!--wrapper-->
<footer>
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor.</a> Coded by <a
href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>
</footer>
<script src="/project-tracking-intro-component/script.js"></script>
</body>
</html>