-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (59 loc) · 2.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@google-sheets-add-on/intro</title>
<link rel="stylesheet" href="/src/styles/index.scss">
<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=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="intro-layout">
<div class="intro-layout__header">
<a class="intro-layout__logo-link" href="#">
<img class="intro-layout__logo-img" src="./images/logo.svg" alt="" />
</a>
</div>
<div class="intro-layout__body">
<div class="intro-layout__body-inner">
<img class="intro-layout__body-icon" src="./images/google-sheets.svg" alt="" />
<div class="intro-layout__title">Market Data add-on by eodhd.com</div>
<div class="intro-layout__list">
<div class="ul-list__item">
<svg class="svg-icon ul-list__item-icon">
<use xlink:href="./icons/sprite.svg#check"></use>
</svg>
<div class="ul-list__item-text">All types of financial data</div>
</div>
<div class="ul-list__item">
<svg class="svg-icon ul-list__item-icon">
<use xlink:href="./icons/sprite.svg#check"></use>
</svg>
<div class="ul-list__item-text">Free and payed versions</div>
</div>
<div class="ul-list__item">
<svg class="svg-icon ul-list__item-icon">
<use xlink:href="./icons/sprite.svg#check"></use>
</svg>
<div class="ul-list__item-text">Formulas free</div>
</div>
</div>
<div class="intro-layout__action">
<a class="btn btn_variant_secondary" href="/data.html">
<div class="btn__text">Continue</div>
</a>
</div>
</div>
</div>
<div class="intro-layout__footer">
<div class="intro-layout__footer-text">
<a href="#">Privacy policy</a>
</div>
<div class="intro-layout__footer-text">EODHD, 2017-2024</div>
</div>
</div>
<script type="module" src="/src/scripts/index.js"></script>
</body>
</html>