-
Notifications
You must be signed in to change notification settings - Fork 0
/
roelof.html
36 lines (34 loc) · 1.61 KB
/
roelof.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
<!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">
<link rel="stylesheet" href="roelof.css" >
<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">
<title>Frontend Mentor | Stats preview card component</title>
</head>
<body>
<main class="container">
<div class="image">
<picture>
<source media="(min-width:700px)" srcset="images/image-header-desktop.jpg">
<img src="images/image-header-mobile.jpg" alt="office">
</picture>
</div>
<div class="text">
<div class="header">
<h1>Get <span class="accent">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>
</div>
<ul role="list" class="stats">
<li role="listitem"><span class="strong">10k+</span>companies </li>
<li role="listitem"> <span class="strong">314</span>templates</li>
<li role="listitem"> <span class="strong">12M+</span>queries</li>
</ul>
</div>
</main>
</body>
</html>