Create forms.html
Browse files- forms.html +60 -0
forms.html
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="vi">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
+
<title>Khảo sát ý kiến</title>
|
| 7 |
+
<style>
|
| 8 |
+
body {
|
| 9 |
+
margin: 0;
|
| 10 |
+
padding: 0;
|
| 11 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 12 |
+
background: linear-gradient(to right, #f8f9fa, #e9ecef);
|
| 13 |
+
display: flex;
|
| 14 |
+
justify-content: center;
|
| 15 |
+
align-items: center;
|
| 16 |
+
min-height: 100vh;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.form-container {
|
| 20 |
+
width: 90%;
|
| 21 |
+
max-width: 700px;
|
| 22 |
+
background-color: #ffffff;
|
| 23 |
+
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
|
| 24 |
+
border-radius: 12px;
|
| 25 |
+
overflow: hidden;
|
| 26 |
+
padding: 20px;
|
| 27 |
+
transition: transform 0.3s ease;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.form-container:hover {
|
| 31 |
+
transform: scale(1.01);
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
h1 {
|
| 35 |
+
text-align: center;
|
| 36 |
+
color: #343a40;
|
| 37 |
+
margin-bottom: 20px;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
iframe {
|
| 41 |
+
width: 100%;
|
| 42 |
+
height: 520px;
|
| 43 |
+
border: none;
|
| 44 |
+
border-radius: 8px;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
@media (max-width: 768px) {
|
| 48 |
+
iframe {
|
| 49 |
+
height: 600px;
|
| 50 |
+
}
|
| 51 |
+
}
|
| 52 |
+
</style>
|
| 53 |
+
</head>
|
| 54 |
+
<body>
|
| 55 |
+
<div class="form-container">
|
| 56 |
+
<h1>📋 Khảo sát ý kiến của bạn</h1>
|
| 57 |
+
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSciIkpYSUsoQI29LW9pJI77TmXSExPp7U2RzwJSU9PnEwMVwA/viewform?embedded=true" allowfullscreen>Đang tải…</iframe>
|
| 58 |
+
</div>
|
| 59 |
+
</body>
|
| 60 |
+
</html>
|