-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Stats preview card component</title>
</head>
<body>
<div class="container">
<div class="card picture">
<div class="overlay"></div>
</div>
<div class="card">
<h1>Get <span>insights</span> that help your business grow.</h1>
<p>
Discover the benefits of data analytics and make better decisions
regarding revenue, customer experience, and overall efficiency.
</p>
<ul>
<li><span>10k+</span> COMPANIES</li>
<li><span>314</span> TEMPLATES</li>
<li><span>12M+</span> QUERIES</li>
</ul>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by
<a href="https://github.com/Draconus524" target="_blank">Draconus</a>.
</div>
</body>
</html>