-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathee.html
109 lines (92 loc) · 2.47 KB
/
ee.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
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EE Department</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #1a237e;
color: #fff;
padding: 20px;
text-align: center;
}
.container {
display: flex;
}
aside {
background-color: #283593;
width: 20%;
padding: 20px;
color: #fff;
}
aside a {
display: block;
color: #fff;
padding: 10px;
text-decoration: none;
margin: 10px 0;
border-radius: 4px;
background-color: #3949ab;
}
aside a:hover {
background-color: #5c6bc0;
}
.content {
width: 80%;
padding: 20px;
background-color: #e8eaf6;
}
h2 {
color: #1a237e;
}
form {
margin-top: 20px;
}
label {
font-weight: bold;
display: block;
margin-bottom: 10px;
}
input[type="text"], input[type="number"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 4px;
}
input[type="submit"] {
background-color: #3949ab;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #5c6bc0;
}
</style>
</head>
<body>
<header>
<h1>EE Department</h1>
</header>
<div class="container">
<aside>
<h3>Departments</h3>
<a href="cse.html">CSE</a>
<a href="ece.html">ECE</a>
<a href="ee.html">EE</a>
<a href="mtech.html">M.Tech</a>
</aside>
<div class="content">
<h2>EE Textbook Submission</h2>
<form action="submit_ee.php" method="POST">
<label for="book_name">Textbook Name:</label>
<input type="text" id="book_name" name="book_name" required>