-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoursetable.html
119 lines (107 loc) · 2.29 KB
/
coursetable.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
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>Details of Courses</title>
<style>
h1
{
font-family:Arial, Helvetica, sans-serif;
color: whitesmoke;
text-align: center;
}
table, th, td
{
border: 2px outset whitesmoke;
font-family:Arial, Helvetica, sans-serif;
color:whitesmoke;
width: auto;
height: auto;
}
ul.guide{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li{
float:left;
}
a{
display:block;
width:150px;
height:45px;
background-color:whitesmoke;
font-family:Arial, Helvetica, sans-serif;
font-size:18pt;
font-weight:700;
text-align: center;
color:#767289;
text-decoration:none;
}
a:hover {
color:#767289;
text-decoration:none;
font-weight:800;
}
</style>
</head>
<body style="background-color:#767289">
<ul class="guide">
<li><a href="index.html">HOMEPAGE</a></li>
<li><a href="people_enroll.html">PEOPLE</a></li>
<li><a href="myclasses.html">COURSES</a></li>
<li><a href="login.html">LOG IN</a></li>
</ul>
<h1>Courses Information
</h1>
<table id="st" align="center">
<caption>Student</caption>
<thead>
<tr>
<th><b>Course_Name</b></th>
<th><b>Course_ID</b></th>
<th><b>Location</b></th>
<th><b>Student_ID</b></th>
<th><b>Instructor_ID</b></th>
</tr>
</thead>
<tbody>
<tr>
<td>Social and Ethical Issues</td>
<td>1235</td>
<td>Area 51</td>
<td>999888775</td>
<td>888888888</td>
</tr>
<tr>
<td>Social and Ethical Issues</td>
<td>1235</td>
<td>Area 51</td>
<td>999888776</td>
<td>888888888</td>
</tr>
<tr>
<td>Network Architecture</td>
<td>1234</td>
<td>Area 51</td>
<td>999666666</td>
<td>888111333</td>
</tr>
<tr>
<td>Web Development</td>
<td>1221</td>
<td>Area 49</td>
<td>999888777</td>
<td>888111333</td>
</tr>
<tr>
<td>Operating System</td>
<td>1212</td>
<td>Area 52</td>
<td>999888777</td>
<td>888111444</td>
</tr>
</tbody>
</table>
</body>
</html>