-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.54 KB
/
Copy pathindex.html
File metadata and controls
42 lines (42 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="icon" type="image/png" sizes="32x32" href="https://i.imgur.com/7cClI9m.png">
<title>Frontend Mentor | Stats preview card component</title>
</head>
<body>
<main>
<div class="container">
<div class="img-color">
</div>
<div class="textContainer">
<section class="container-description">
<h1 class="title main-title">Get <span>insights</span> that help your business grow.</h1>
<p class="text">Discover the benefits of data analytics and make better decisions regarding revenue, customer
experience, and overall efficiency.</p>
</section>
<section class="stats">
<div class="stats_item one">
<h2 class="title">10k+</h2>
<p class="text">companies</p>
</div>
<div class="stats_item">
<h2 class="title">314</h2>
<p class="text">templates</p>
</div>
<div class="stats_item">
<h2 class="title">12M+</h2>
<p class="text">queries</p>
</div>
</section>
</div>
</div>
</main>
</body>
</html>