-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
194 lines (148 loc) · 6.09 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!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">
<title>Document</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="promo.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="nav.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="footer.css">
<script src="https://code.iconify.design/iconify-icon/1.0.0-beta.3/iconify-icon.min.js"></script>
<style>
#promo_code{
position: sticky;
top: 0;
/* overflow: hidden; */
/* width: 100%; */
}
#navbar_container{
position: sticky;
top: 0;
/* overflow: hidden; */
width: 100%;
}
</style>
</head>
<body>
<div id="promo_code"></div>
<div id="navbar_container"></div>
<div class="landing_page">
<div class="home_top">
<h1>Engage your audience & eliminate awkward silences</h1>
<p>Our easy-to-build presentations, interactive Polls, Quizzes, and Word Clouds mean more participation and less stress</p>
<a href="#"><button>Sign up</button></a>
<p>No credit card needed</p>
</div>
<div class="home_video_outer_div">
<div class="home_video">
<!-- <h1>Impress with interactive presentations</h1> -->
<a href="#"><button class="watch_video ">Watch video <span class="material-symbols-outlined arrow_right">
arrow_right
</span></i></button></a>
</div>
</div>
<div class="what_is_mentimeter">
<div>
<h1>What is Mentimeter?</h1>
<div>
<div>
<img src="https://www.mentimeter.com/_next/static/media/prepare.589e36de.svg" alt="">
<h2>Prepare</h2>
<p>Build interactive presentations with the easy-to-use online editor. Add questions, polls, quizzes, slides, images, gifs and more to your presentation to create fun and engaging presentations.</p>
</div>
<div>
<img src="https://www.mentimeter.com/_next/static/media/engage.ba9959f7.svg" alt="">
<h2>Engage</h2>
<p>Build interactive presentations with the easy-to-use online editor. Add questions, polls, quizzes, slides, images, gifs and more to your presentation to create fun and engaging presentations.</p>
</div>
<div>
<img src="https://www.mentimeter.com/_next/static/media/followup.14994f30.svg" alt="">
<h2>Follow-up</h2>
<p>Once your Mentimeter presentation is over, share and export your results for further analysis and even compare data over time to measure the progress of your audience.'</p>
</div>
</div>
<a href=""><button class="explore_features_btn">Explore features</button></a>
</div>
</div>
<div class="millions_of_voices">
<div>
<h1>Millions of voices have already been heard</h1>
<div>
<div>
<h1>280 M</h1>
<hr>
<p>Voters</p>
</div>
<div>
<h1>14 M</h1>
<hr>
<p>Presenters</p>
</div>
<div>
<h1>220+</h1>
<hr>
<p>Countries & territories</p>
</div>
</div>
</div>
</div>
<div class="andrew_hello">
<div>
<div>
<img src="https://www.mentimeter.com/_next/static/media/andrew-hollo.3f3b1387.png" alt="">
</div>
<div>
<h1>"I can pose a question easily and within a minute or two, have aggregated responses from every participant."</h1>
<p>Andrew Hollo, Workwell Consulting</p>
<a href=""><button class="explore_more_stories_btn explore_features_btn">Explore more stories</button></a>
</div>
</div>
</div>
<div class="home_end">
<div>
<h1>Impress with interactive presentations</h1>
<a href="#"><button class="get_started explore_features_btn">Get started</button></a>
</div>
</div>
</div>
<div id="footer_container"></div>
</body>
</html>
<script type="module">
import promo_code from "/promo_code_export.js";
// console.log("navbar:", promo_code);
let promo = document.querySelector("#promo_code");
promo.innerHTML = promo_code();
</script>
<script type="module">
import navbar from "/navbar_export.js";
let container = document.querySelector("#navbar_container");
container.innerHTML = navbar();
</script>
<script type="module">
import footer from "/footer_export.js";
console.log("foooter",footer)
let foot = document.querySelector("#footer_container");
foot.innerHTML = footer;
</script>
<script src="nav.js"></script>
<script src="promo.js"></script>