-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
115 lines (98 loc) · 3.1 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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>New Git Repo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="wrapper">
<div>
<img src="images/logo.svg">
</div>
<div>
<a href="#"><button type="button">Try It Free</button></a>
</div>
</div>
</nav>
<main>
<div class="flex-container-2">
<div class="info">
<h2>Build The Community Your Fans Will Love</h2>
<p>Contrary to popular belief, Lorem Ipsum is
not simply
<br>
random text. It has roots in a piece
of classical Latin
<br>
literature from 45 BC, making
it over 2000 years old.
</p>
<button>Get Started For Free</button>
</div>
<div class=img-holder>
<img src="images/illustration-mockups.svg">
</div>
</div>
</main>
<section>
<div class="flex-container section-1">
<div class="grow">
<h2>Grow Toghether</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="grow-image">
<img src="images/illustration-grow-together.svg">
</div>
</div>
</section>
<section>
<div class="flex-container section-2">
<div class="conversation">
<h2>Flowing Conversations</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="flow-image">
<img src="images/illustration-flowing-conversation.svg">
</div>
</div>
</section>
<section>
<div class="flex-container section-3">
<div class="users">
<h2>Your Users</h2>
<p>It uses a dictionary of over 200 Latin words,
combined with <br>
a handful of model sentence
structures, to generate <br>
Lorem Ipsum which
looks reasonable.
</p>
</div>
<div class="user-image">
<img src="images/illustration-your-users.svg">
</div>
</div>
</section>
<footer>
<div>
<img src="" alt="">
</div>
</footer>
</body>
</html>