-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionnaire.html
More file actions
53 lines (53 loc) · 1.59 KB
/
questionnaire.html
File metadata and controls
53 lines (53 loc) · 1.59 KB
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="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Questionnaire</title>
<style>
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #ff9a9e, #fad0c4);
color: #333;
text-align: center;
margin: 0;
padding: 0;
}
.container {
margin: 20px auto;
padding: 20px;
background-color: white;
width: 90%;
max-width: 500px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
input[type=\"submit\"] {
background-color: #ff4178;
color: white;
padding: 10px 20px;
border: none;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}
input[type=\"submit\"]:hover {
background-color: #ff2958;
}
</style>
</head>
<body>
<div class="container">
<h1>Questionnaire</h1>
<form action="result.html" method="GET">
<p>Quel est mon plat préféré ?</p>
<input type="text" name="q1" required><br><br>
<p>Quelle est ma couleur préférée ?</p>
<input type="text" name="q2" required><br><br>
<p>Quel est notre souvenir le plus cher ?</p>
<input type="text" name="q3" required><br><br>
<input type="submit" value="Valider mes réponses">
</form>
</div>
</body>
</html>