-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsurvey.html
30 lines (30 loc) · 1.19 KB
/
survey.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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<script>
function random_3(){
var myrandom=Math.round(Math.random()*3)
var link1="https://goo.gl/forms/MonfXLchCCDbMzON2"
var link2="https://goo.gl/forms/d981Ur1o2YiV132T2"
var link3="https://goo.gl/forms/k9pMxeiYwv7Y67PI3"
var link4="https://goo.gl/forms/2hxfDEQuuyE7uw7n1"
if (myrandom==0)
window.location=link1
else if (myrandom==1)
window.location=link2
else if (myrandom==2)
window.location=link3
else if (myrandom==3)
window.location=link4
}
</script>
<br><br><br><br>
<div class="d-flex justify-content-center">
<form method="post"><br><br><br><br><br><br><br><br>
<big><button type="button" class="btn btn-info" value="Click here!" onclick="random_3()">Click Here for Survey</button><big>
</form>
</div>
</body>
</html>