-
Notifications
You must be signed in to change notification settings - Fork 0
/
typeform.html
37 lines (37 loc) · 1.06 KB
/
typeform.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
<!--Upload this file to your server-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<!--Add the title of your typeform below-->
<title>Headlinie - Feedback</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!--CSS styles that ensure your typeform takes up all the available screen space (DO NOT EDIT!)-->
<style type="text/css">
html{
margin: 0;
height: 100%;
overflow: hidden;
}
iframe{
position: absolute;
left:0;
right:0;
bottom:0;
top:0;
border:0;
}
</style>
</head>
<body>
<iframe id="typeform-full" width="100%" height="100%" frameborder="0" src="https://admin.typeform.com/to/njdbt5"></iframe>
<script type="text/javascript" src="http://localhost:8000/dist/embed.js"></script>
<script>
alert(navigator.userAgent.toLowerCase())
if (/mobile|tablet/i.test(navigator.userAgent.toLowerCase())) {
alert('your a phone!')
} else {
alert('you are something else')
}
</script>
</body>
</html>