-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (51 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Stats preview card component</title>
<!-- =========|| Style Sheets ||=========-->
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- =========|| Style Sheets ||=========-->
</head>
<body>
<main class="main">
<div class="container">
<div class="stats-card">
<section class="stats-card__content">
<div class="stats-card__title">
<h1>Get<span class="stats-card__title-accent">insights</span>that help your business grow.</h1>
</div>
<div class="stats-card__text">
<p>
Discover the benefits of data analytics and make better decisions regarding revenue, customer experience,
and overall efficiency.
</p>
</div>
<div class="stats-card__data-container">
<ul class="stats-card__data">
<li class="stats-card__data-item">
<h2 class="stats-card__data-number">10K+</h2>
<p class="stats-card__data-name">COMPANIES</p>
</li>
<li class="stats-card__data-item">
<h2 class="stats-card__data-number">314</h2>
<p class="stats-card__data-name">TEMPLATES</p>
</li>
<li class="stats-card__data-item">
<h2 class="stats-card__data-number">12M+</h2>
<p class="stats-card__data-name">QUERIES</p>
</li>
</ul>
</div>
</section>
<section class="stats-card__thumbnail overlay">
<img class="stats-card__thumbnail-image" src="images/image-header-desktop.jpg" alt="woman staffs of company sit on a table and work">
</section>
</div>
</div>
</main>
</body>
</html>