-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (72 loc) · 2.61 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
<!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>LinkedList</title>
<link rel="stylesheet" href="static/css/style.css" />
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#" class="nav-logo"
>Linked<span class="brand-sub">List</span></a
>
<ul class="nav-menu">
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/Lunaticsatoshi"
>GitHub</a
>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<section class="hero">
<div class="container">
<div class="left-col">
<p class="subhead">It's truly Simple & Great</p>
<h1>A Single Place For All Your Social Media Influence</h1>
<div class="hero-cta">
<a href="#" class="primary-cta">Try for free</a>
</div>
</div>
<img class="hero-img" src="assets/pic1.svg" alt="List" />
</div>
</section>
<section class="features-section">
<div class="container">
<img class="feature-img" src="assets/illustration.svg" alt="List" />
<div class="left-col">
<h1>Why LinkedList?</h1>
<p class="subhead">All your social media work deserves a place where you can build an economy around your presence. LinkedList provides you a platform to showcase your proof of work bringing you exciting opportunities and capital</p>
<div class="feature-list">
<div class="feature">
<h5> A single Platform for all your work</h5>
<p class="subhead">LinkedList provides you a platform to showcase all your work to audience.</p>
</div>
<div class="feature">
<h5> A single Platform for all your work</h5>
<p class="subhead">LinkedList provides you a platform to showcase all your work to audience.</p>
</div>
</div>
</div>
</div>
</section>
<script src="static/js/app.js"></script>
</body>
</html>