-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="utf-8" />
<meta name="author" content="Genuine Stalwart" />
<meta name="description" content="Frontend Mentor || Stats Preview Card Component - This is a great small challenge to help get you used to building to a design. There's no JS in this project, so you'll be able to focus on your HTML & CSS skills." />
<meta name="keywords" content="frontend mentor, stats preview card component, challenge, solution" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- CSS -->
<link type="image/png" rel="icon" href="favicon-32x32.png" />
<link type="text/css" rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap" />
<link type="text/css" rel="stylesheet" href="style.css" />
<!-- Others -->
<title>Stats Preview Card Component</title>
</head>
<body>
<main>
<img src="image-header-mobile.jpg" id="ih-mobile" alt="image header" />
<div id="card-body">
<h1>Get <span style="color: hsl(277, 64%, 61%);">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>
<h2>10k+</h2>
<div>COMPANIES</div>
</li>
<li>
<h2>314</h2>
<div>TEMPLATES</div>
</li>
<li>
<h2>12M+</h2>
<div>QUERIES</div>
</li>
</ul>
</div>
<img src="image-header-desktop.jpg" id="ih-desktop" alt="image header" />
</main>
</body>
</html>