-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
175 lines (169 loc) · 5.48 KB
/
index.html
File metadata and controls
175 lines (169 loc) · 5.48 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Webflow Agency</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<!-- Header -->
<section class="hero">
<div class="hero-header">
<div class="logo">LOGO</div>
<button class="sign-up">Sign Up</button>
</div>
<br /><br /><br /><br />
<h1>
Cool Dark UI Template for <br />
Webflow Agencies!
</h1>
<br />
<button>Stay Focused</button>
</section>
<!-- Action -->
<br /><br /><br /><br /><br />
<section class="see-it-in-action">
<div class="text">
<h2>See It in Action</h2>
<p>
Explore the live preview and imagine your brand in this bold new
look.
</p>
<button>Launch Live Preview</button>
</div>
<div class="image">
<img src="assets/wc-mini.png" alt="Webflow Conf 2022" />
</div>
</section>
<!-- Thousand User -->
<section class="stats">
<h2>Joined Thousands of Productive Users</h2>
<div class="stat-items">
<div class="stat">
<h3>50K</h3>
<p>Active Users</p>
</div>
<div class="stat">
<h3>2M+</h3>
<p>Focus Sessions</p>
</div>
<div class="stat">
<h3>95%</h3>
<p>Satisfaction Rate</p>
</div>
</div>
</section>
<!-- Review -->
<section class="testimonials">
<h2>What our users say</h2>
<div class="testimonial-items">
<div class="testimonial">
<div class="stars">
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
</div>
<p>"Loved by Designers"</p>
<p>
"This template instantly leveled up our presence." - Studio Vertex
</p>
<div class="reviewer">
<img src="assets/avatar.png" alt="Reviewer" />
<div>
<p>Reviewer name</p>
<p>Date</p>
</div>
</div>
</div>
<div class="testimonial">
<div class="stars">
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
</div>
<p>"Loved by Designers"</p>
<p>
"This template instantly leveled up our presence." - Studio Vertex
</p>
<div class="reviewer">
<img src="assets/avatar.png" alt="Reviewer" />
<div>
<p>Reviewer name</p>
<p>Date</p>
</div>
</div>
</div>
<div class="testimonial">
<div class="stars">
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
<img src="assets/icon-star.png" alt="Star" />
</div>
<p>"Loved by Designers"</p>
<p>
"This template instantly leveled up our presence." - Studio Vertex
</p>
<div class="reviewer">
<img src="assets/avatar.png" alt="Reviewer" />
<div>
<p>Reviewer name</p>
<p>Date</p>
</div>
</div>
</div>
</div>
</section>
<!-- Ready to Focus -->
<section class="ready-to-focus">
<h2>Ready to focus better</h2>
<p>This template instantly leveled up our presence." - Studio Vertex</p>
<button>Get Started Free</button>
<br />
<img src="assets/wc-big.png" alt="Webflow Conf 2022" />
</section>
<!-- Contact -->
<section class="contact">
<div class="contact-text">
<h2>Let's Get in Touch</h2>
</div>
<div class="contact-form">
<form>
<label for="email">Email</label>
<input type="email" id="email" placeholder="example@email.com" />
<label for="name">Name</label>
<input type="text" id="name" placeholder="full name" />
<label for="message">Message</label>
<textarea
id="message"
placeholder="write your message..."
></textarea>
<button>Get in Touch</button>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="logo">LOGO</div>
<p>
Ready to elevate your online presence? Contact us today to discuss your
<br />
project and discover how we can bring your vision to life.
</p>
<nav>
<a href="#">Home</a>
<a class href="#">About</a>
<a href="#">How It Works</a>
<a href="#">Services</a>
</nav>
</footer>
</body>
</html>