-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (40 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
52 lines (40 loc) · 1.18 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
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Stats preview card component</title>
<!-- For Desktop -->
<link rel="stylesheet" href="desktop.css" media="screen and (max-width:1440px)">
<!-- For Mobile -->
<link rel="stylesheet" href="mobile.css" media="screen and (max-width:500px)">
</head>
<body>
<section>
<main>
<div class="first-part">
<h3>Get <span class="insight">insights</span> that help your business grow.</h3>
<p>Discover the benefits of data analytics and make better decisions regarding revenue, customer experience and overall efficiency.</p>
</div>
<div class="first-part">
<img src="images/image-header-desktop.jpg" alt="">
</div> <!-- Image div Ends here -->
</main>
<div class="second-part">
<div>
<h3>10k+</h3>
<p>Companies</p>
</div>
<div>
<h3>314</h3>
<p>Templates</p>
</div>
<div>
<h3>12M+</h3>
<p>Queries</p>
</div>
</div>
</section>
</body>
</html>