-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtt.html
76 lines (63 loc) · 2.1 KB
/
tt.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A Simple website to access study materials of 5th Sem - DSCE">
<meta name="keywords" content="HTML CSS JS">
<link rel="manifest" href="../manifest.json">
<link rel="stylesheet" href="../SASS/style.css">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="ECE - 5th Sem">
<link rel="apple-touch-icon" href="../img/icons/app-icon-96x96.png" sizes="96x96">
<link rel="apple-touch-icon" href="../img/icons/app-icon-144x144.png" sizes="144x144">
<link rel="apple-touch-icon" href="../img/icons/app-icon-256x256.png" sizes="256x256">
<link rel="apple-touch-icon" href="../img/icons/app-icon-512x512.png" sizes="512x512">
<meta name="msapplication-TileImage" content="./img/icons/app-icon-144x144.png">
<meta name="msapplication-TileColor" content="#fff">
<meta name="theme-color" content="#fff">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<title>Sem End Time Table</title>
</head>
<body class="ttb">
<h1 class="best">
5th Sem End Time Table | ECE
</h1>
<table class="tt">
<thead>
<tr>
<th>Subject</th>
<th>Date of Exam</th>
</tr>
</thead>
<tbody>
<tr>
<th>Digital Signal Processing</th>
<td>24th Feb, 2022</td>
</tr>
<tr>
<th>Digital Communication System</th>
<td>28th Feb, 2022</td>
</tr>
<tr>
<th>Digital System Design using Verilog</th>
<td>3rd Mar, 2022</td>
</tr>
<tr>
<th>Elective A</th>
<td>7th Mar, 2022</td>
</tr>
<tr>
<th>Elective B</th>
<td>9th Mar, 2022</td>
</tr>
<tr>
<th>Management and Enterpreneurship</th>
<td>11th Mar, 2022</td>
</tr>
</tbody>
</table>
</body>
</html>