-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
53 lines (53 loc) · 1.73 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BroFlix - Feedback</title>
<style>
body {
margin: 0;
padding: 20px;
background-color: black;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: Arial, sans-serif;
color: white;
box-sizing: border-box;
}
.logo {
color: red;
font-size: 48px;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
}
.feedback-text {
max-width: 640px;
text-align: center;
margin-bottom: 20px;
line-height: 1.6;
}
.feedback-form {
max-width: 100%;
width: 640px;
}
</style>
</head>
<body>
<div class="logo">
BroFlix
</div>
<div class="feedback-text">
<h2>We Value Your Feedback!</h2>
<p>At BroFlix, your opinion matters. Help us improve our service by sharing your thoughts, suggestions, and experiences. Your feedback helps us create a better streaming experience for all our users.</p>
<p>Use the form below to request a movie, a tv show or even missing subtitles for a movie.</p>
</div>
<div class="feedback-form">
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScn2H4yVhMLDFhccOuueUZV6iLWi_PDm0iLSa5pCkKEIXYNBA/viewform?embedded=true" width="640" height="919" frameborder="0" marginheight="0" marginwidth="0">Φόρτωση…</iframe>
</div>
</body>
</html>