-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
96 lines (94 loc) · 2.34 KB
/
feedback.html
File metadata and controls
96 lines (94 loc) · 2.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback - Study Hub</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background: #333;
color: white;
padding: 20px;
text-align: center;
}
nav {
background: #444;
padding: 10px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
}
.container {
flex: 1;
padding: 20px;
max-width: 800px;
margin: auto;
}
form {
background: #f4f4f4;
padding: 20px;
border-radius: 5px;
}
label, textarea, input {
display: block;
width: 100%;
margin-bottom: 10px;
}
textarea {
height: 100px;
}
button {
background: #333;
color: white;
padding: 10px;
border: none;
cursor: pointer;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 10px;
margin-top: auto;
}
</style>
</head>
<body>
<header>
<h1>Feedback</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="library.html">Library</a>
<a href="notes.html">Notes</a>
<a href="feedback.html">Feedback</a>
</nav>
<div class="container">
<h2>We Value Your Feedback</h2>
<form>
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
<label for="message">Your Feedback:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Submit</button>
</form>
</div>
<footer>
<p>© 2025 Study Hub. All rights reserved.</p>
</footer>
</body>
</html>