-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (94 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Website Design - The Leader in Website Design - Squarespace</title>
<link rel="stylesheet" href="style.css" />
<script
src="http://kit.fontawesome.com/6478f529f2.js"
crossorigin="anonymouse"
></script>
<script src="./script.js" defer></script>
</head>
<body>
<header class="header">
<a href="https://www.squarespace.com/" class="header__logo">
<i class="fas fa-paperclip"></i>
<span>squarespace</span>
</a>
<nav class="header__nav">
<ul>
<li>
<a href="#">products<i class="fas fa-chevron-down"></i></a>
</li>
<li>
<a href="#">templates</a>
</li>
<li>
<a href="#">resources<i class="fas fa-chevron-down"></i></a>
</li>
</ul>
</nav>
<div class="header__btn">
<a href="#">log in</a>
<a href="#">get started</a>
</div>
</header>
<section class="home">
<div class="home__description">
<h3>create your website</h3>
<h1 class="title-large">The leader in website design.</h1>
<p>
Stand out online with a professional website, online store, or
portfolio. With Squarespace, you can turn any idea into a reality.
</p>
<a href="#" class="start-btn">get started</a>
</div>
<div class="home__images">
<div class="home__images__dots">
<span></span>
<span></span>
<span></span>
</div>
<img src="./imgs/image1.png" alt="" />
</div>
</section>
<!-- second page -->
<section class="turn-your-idea">
<h1 class="title-large">Turn your ideas into reality.</h1>
<div class="turn-your-idea__content">
<div class="div"><img src="./imgs/image2.png" alt="" /></div>
<div class="content__desc">
<ul>
<li>
<h4>Choose your website template</h4>
<p>
Select from any of our industry-leading website templates,
designer fonts, and color palettes to best fit your personal
style and professional needs.
</p>
</li>
<li>
<h4>Add the tools you need</h4>
<p>
Explore which tools you want to add - whether it's setting up an
online store, booking services, or adding your favorite
third-party extension.
</p>
</li>
<li>
<h4>Reach your audience</h4>
<p>
Stand out in every inbox and social feed. On-brand email
campaigns and social tools make it easy to grow your audience
across multiple channels.
</p>
</li>
</ul>
<a href="#">get started →</a>
</div>
</div>
</section>
</body>
</html>