forked from gihantha/-HactoberFest2020-For_All_Beginers-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
26 lines (24 loc) · 646 Bytes
/
Copy pathtable.html
File metadata and controls
26 lines (24 loc) · 646 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
<html>
<header>
<style type="text/css">
.myOtherTable { width:400px;background-color:#FFFFE0;border-collapse:collapse;color:#000;font-size:18px; }
.myOtherTable th { background-color:#BDB76B;color:white;width:50%;font-variant:small-caps; }
.myOtherTable td, .myOtherTable th { padding:5px;border:0; }
.myOtherTable td { font-family:Georgia, Garamond, serif; border-bottom:1px solid #BDB76B;height:180px; }
</style>
</header>
<body>
<!-- End Styles -->
<table class="studentTable">
<tr>
<th>Student</th><th>Student ID</th>
</tr>
<tr>
<td>Kamal</td><td>001</td>
</tr>
<tr>
<td>Nimal</td><td>002</td>
</tr>
</table>
</body>
</html>