-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcatalogs.html
101 lines (97 loc) · 2.9 KB
/
catalogs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catalogs</title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<header>
<div class="container">
<h1>Catalogs</h1>
</div>
<style>
body {
font-family: 'Times New Roman', Times, serif, sans-serif;
margin: 0;
padding: 0;
background-color: #C3B1E1;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: #CCCCFF;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
}
.question {
margin-bottom: 20px;
}
.answer-box {
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
.button-group {
text-align: center;
}
.button-group button {
padding: 10px 20px;
margin: 0 10px;
font-size: 16px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.button-group button.active {
background-color: #4CAF50;
color: white;
}
.next-button {
margin-top: 20px;
background-color: #4CAF50;
color: white;
}
</style>
</header>
<main>
<div class="container">
<form method="post" action="catalogs.php"> <!-- Modified form tag -->
<p class="question">
<label>Welcome to Interns! Our website can provide some travel recommendations based on the user's needs, the main sections are:</label>
</p>
<ul>
<li>Quiz</li>
<li>Recommendations</li>
<li>Map</li>
</ul>
<p>
<label>Let's taking quiz first!</label>
</p>
<input type="submit" value="Start Quiz" />
</form>
</div>
</main>
<footer>
<div class="container">
Interns ©2024, Catalogs
</div>
</footer>
</body>
</html></title>
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
</html>