-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.html
62 lines (59 loc) · 2.14 KB
/
file.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
<!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">
<link href="https://fonts.googleapis.com/css?family=IBM Plex Sans" rel="stylesheet" />
<title>Landing Page</title>
</head>
<body>
<nav>
<div class="navbar">
<ul>
<li>Home</li>
<li>Articles</li>
<li>Pricing</li>
<li>About</li>
<li>Contact</li>
</ul>
</div>
</nav>
<section>
<div class="title">A modern way to <br> build websites.</div>
<div class="description">Empower designers to build professional, custom websites <br> in a completely visual canvas with no code.</div>
<div class="cta">
<div class="start-trial">Start free trial</div>
</div>
</section>
<section class=articles>
<div class="divider">
<div class="page-divider"></div>
<div class="our-thoughts">We share our thoughts on design</div>
<div class="page-divider"></div>
</div>
<div class="listed-articles">
<div class="article">
<img src="https://i.ibb.co/LkzV7r2/Rectangle-8.png" />
<div class="article-desc">Redesigning my site <br> increased sales by over <br> 400% in one week.</div>
<div class="date">Jul 1, 2020</div>
</div>
<div class="article">
<img src="https://i.ibb.co/P4rRkX0/Rectangle-8-1.png" alt="Rectangle-8-1" border="0" />
<div class="article-desc">Design handoff: What <br> engineers really want to see</div>
<div class="date">Jul 1, 2020</div>
</div>
<div class="article">
<img src="https://i.ibb.co/q77MS5Q/Frame-7.png" alt="Frame-7" border="0" />
<div class="article-desc">A comprehensive list of <br> human-computer <br> interactions</div>
<div class="date">Jul 1, 2020</div>
</div>
<div class="article">
<img src="https://i.ibb.co/W66Z3YV/Rectangle-8.png" alt="Rectangle-8" border="0" />
<div class="article-desc">Why do people hate <br> redesigns?</div>
<div class="date">Jul 1, 2020</div>
</div>
</div>
</section>
</body>
</html>