This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Frontend Mentor - Stats Preview Card">
<meta name="keywords" content="Stats Preview Card, Frontend Mentor">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Local Style-->
<link href="styles.css" rel="stylesheet">
</link>
<!--Favicon-->
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<title>Stats Preview Card</title>
</head>
<body>
<main>
<!-- Main Container-->
<section class="center-container">
<!-- Stats Container-->
<section class="stats-container">
<h1>Get<span class="insights-text"> insights</span> that help your business grow.</h1>
<p class="describtion">Discover the benefits of data analytics and make better decisions regarding
revenue, customer experience, and overall efficiency.</p>
<!-- Numbers Container -->
<section class="numbers-container">
<section class="nums">
<h2>10k+</h2>
<p>companies</p>
</section>
<section class="nums">
<h2>314</h2>
<p>templates</p>
</section>
<section class="nums">
<h2>12M+</h2>
<p>queries</p>
</section>
</section>
</section>
<!-- Image Container-->
<section class="image-container">
<img src="images/image-header-desktop.jpg" alt="" aria-hidden="true">
</section>
</section>
</main>
</body>
</html>