chore(survey): post the survey to the site with a shortcut
This commit is contained in:
parent
c7fa461c04
commit
f41517aca1
|
@ -49,6 +49,10 @@
|
|||
{
|
||||
"source": "/events",
|
||||
"destination": "/events.html"
|
||||
},
|
||||
{
|
||||
"source": "/survey",
|
||||
"destination": "/survey.html"
|
||||
}
|
||||
],
|
||||
"ignore": [
|
||||
|
|
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
|
||||
<!--Add the title of your typeform below-->
|
||||
<title>2016 Angular Usage Trends Survey</title>
|
||||
|
||||
<!--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://angular.typeform.com/to/TmzUeq"></iframe>
|
||||
<script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue