-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/styles.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<meta
name="keywords"
content="Insights, Business grow, Data analytics,
Revenue decisions, Customer experience,
Overall efficiency"
/>
<title>Stats preview card component</title>
</head>
<body class="page">
<!-- Main content of the page -->
<main class="main">
<!-- Picture -->
<figure class="picture-container">
<picture>
<source
media="(min-width: 900px)"
srcset=".\images\image-header-desktop.jpg"
/>
<img
class="picture-container__img"
src=".\images\image-header-mobile.jpg"
alt="People sitting at a desk smiling and working"
/>
</picture>
</figure>
<!-- Card -->
<section class="card">
<h1 class="text text--type_header">
Get <span class="text--gradient">insights</span> that help your
business grow.
</h1>
<p class="text text--type_paragraph">
Discover the benefits of data analytics and make better decisions
regarding revenue, customer experience, and overall efficiency.
</p>
<div class="card__stats">
<div class="stats-item">
<span class="text text--type_stats-value text--gradient">10k+</span>
<span class="text text--type_stats-description">companies</span>
</div>
<div class="stats-item">
<span class="text text--type_stats-value text--gradient">314</span>
<span class="text text--type_stats-description">templates</span>
</div>
<div class="stats-item">
<span class="text text--type_stats-value text--gradient">12M+</span>
<span class="text text--type_stats-description">queries</span>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<p class="text text--type_footer">
for
<a
href="https://www.frontendmentor.io/challenges/stats-preview-card-component-8JqbgoU62"
target="_blank"
class="link text--gradient text--type_link"
>
Frontend Mentor
</a>
| by <a
href="https://github.com/arlagonix"
target="_blank"
class="link text--gradient text--type_link"
>Alexander Gorbunov
</a>
</p>
</footer>
</body>
</html>