-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
71 lines (68 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<!-- Styles -->
<link rel="stylesheet" href="./css/normalize.css" />
<link rel="stylesheet" href="./css/style.css" />
<!-- Typography -->
<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&display=swap"
rel="stylesheet"
/>
<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>Stats preview card</title>
</head>
<body>
<div class="container cardcustom">
<div class="row">
<div class="col-sm-12 col-lg-6 order-lg-2 imgcontainer">
<img
class="img-fluid cardImg"
src="./images/image-header-desktop.jpg"
alt="Woman office workers, working in office"
/>
</div>
<div class="col col-lg-6 customPadding text-center text-lg-start">
<div class="col">
<h1>Get <span>insights</span> that help your buisness grow.</h1>
<p class="mainParagraph">
Discover the benefits of data analytics and make better decisions
regarding revenue, customer experience, and overall efficiency
</p>
</div>
<div class="row pt-5">
<div class="col-sm-12 col-lg-4">
<h4>10K+</h4>
<p><small>COMPANIES</small></p>
</div>
<div class="col-sm-12 col-lg-4">
<h4>314</h4>
<p><small>TEMPLATES</small></p>
</div>
<div class="col-sm-12 col-lg-4">
<h4>12M+</h4>
<p><small>QUERIES</small></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>