-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-course.html
More file actions
43 lines (34 loc) · 858 Bytes
/
add-course.html
File metadata and controls
43 lines (34 loc) · 858 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Add Course</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Add Course</h1>
<nav>
<a href="index.html">Home</a>
<a href="course.html">My Courses</a>
<a href="add-course.html">Add Course</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<form>
<label>Course Name:</label><br>
<input type="text"><br><br>
<label>Instructor:</label><br>
<input type="text"><br><br>
<label>Credit Hours:</label><br>
<input type="number"><br><br>
<label>Notes:</label><br>
<textarea></textarea><br><br>
<button type="submit">Add</button>
</form>
</main>
</body>
<footer>
<p>© 2026 CourseFlow</p>
</footer>
</html>