-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankyou.html
35 lines (32 loc) · 1.14 KB
/
thankyou.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
<html>
<head>
<title> Thank you! </title>
<meta charset="UTF-8">
<style>
.testbox {
margin: 20px 20px 20px 20px;
padding: 20px;
border-style: solid;
width: 800px;
background: rgba(218,235,251,1);
background: -moz-linear-gradient(left, rgba(218,235,251,1) 0%, rgba(154,196,244,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(218,235,251,1)), color-stop(100%, rgba(154,196,244,1)));
background: -webkit-linear-gradient(left, rgba(218,235,251,1) 0%, rgba(154,196,244,1) 100%);
background: -o-linear-gradient(left, rgba(218,235,251,1) 0%, rgba(154,196,244,1) 100%);
background: -ms-linear-gradient(left, rgba(218,235,251,1) 0%, rgba(154,196,244,1) 100%);
background: linear-gradient(to right, rgba(218,235,251,1) 0%, rgba(154,196,244,1) 100%);
}
</style>
</head>
<body>
<div style="margin:20px 20px 20px 20px;">
<h3> Thank you for your answers!</h3>
</div>
<div class="testbox">
<br>
<a href="https://www.kuuntelutesti.fi">..or go back to test main page</a>
<br>
<br>
</div>
</body>
</html>