-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
65 lines (55 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Landing page</title>
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div id="bg">
</div>
<div id="main">
<div id="logo">Logo</div>
<nav>
<ul>
<li>Home</li>
<li>Tutorials</li>
<li>About</li>
<li> Contact</li>
</ul>
</nav>
<div id="sign-nav">
<div id="signin">
Login
</div>
<div id="signup">
Sign up
</div>
</div>
<div id="main-content">
<div id="big-title">
<h1>My main title</h1>
</div>
<div id="desc">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.
Eligendi recusandae necessitatibus autem qui possimus officia
laudantium commodi enim adipisci rem dolorum laboriosam,
iure ratione harum? Fuga distinctio deleniti enim eos! </p>
</div>
<div class="btn">
Get started
</div>
</div>
<div id="social-icons">
<img src="assets/google.png" alt="G" height="36" width="36">
<img src="assets/facebook.png" alt="f" height="36" width="36">
<img src="assets/instagram.png" alt="i" height="36" width="36">
<img src="assets/twitter.png" alt="t" height="36" width="36">
<img src="assets/linkedin.png" alt="l" height="36" width="36">
</div>
</div>
</body>
</html>