-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
174 lines (156 loc) · 4.43 KB
/
popup.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
<!DOCTYPE html>
<html>
<style>
.body {
padding: 0;
text-align: center;
background: #23272a;
color: white;
font-size: 15px;
font-family: Arial
}
.header {
padding: 30px;
text-align: center;
background: #23272a;
color: white;
font-size: 30px;
}
.menu {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.rexlogo {
float:left;
max-width: 100px;
margin: 5px;
padding: 0px
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.rexlogo a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.rexlogo a:hover {
background-color: #111;
}
* {box-sizing:border-box}
.slideshow-container {
max-width: 80vw;
position: relative;
margin: auto;
}
.mySlides {
display: none;
}
.ccstatement {
padding: 0;
text-align: center;
background: #2c2f33;
color: white;
font-size: 20px;
font-family: Arial
}
.xyz {
padding: 0;
text-align: center;
background: #2c2f33;
color: white;
font-size: 20px;
font-family: Arial
}
a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: gainsboro;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: gainsboro;
background-color: transparent;
text-decoration: underline;
}
.fade-in-image {
animation: fadeIn 5s;
-webkit-animation: fadeIn 5s;
-moz-animation: fadeIn 5s;
-o-animation: fadeIn 5s;
-ms-animation: fadeIn 5s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
</style>
<script>
function redirect() {
window.location.href="https://youtube.com";
}
</script>
<head>
<title> Rex Animation Studios </title>
<link rel="icon" href="https://media.discordapp.net/attachments/835115484596142097/929020194733559918/thumb.png">
</head>
<body class="body">
<h1>What do you think of our website?</h1> <br>
<h2 >Share your thoughts!</h2>
<form>
<label for="fname">What's your name?</label><br><br>
<input type="text" id="fname" name="fname" maxlength="30"><br><br>
<input type="radio" id="positive" name="negative" maxlength="30">
<label for="positive">I am satisfied with this website!</label><br><br>
<input type="radio" id="negative" name="negative" maxlength="30">
<label for="negative">I am not satisfied with this website!</label><br><br>
<label for="why">Tell us Why!</label><br><br>
<input type="why" id="why" name="why" maxlength="250"><br><br>
</form>
<a href="thanks.html">
<button>Submit</button>
</a>
<footer class="ccstatement">
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />This website is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
</footer>
</body>