-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lectures.php
76 lines (65 loc) · 2.62 KB
/
Lectures.php
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">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="row">
<div class="col p10">
<div class="card">
<h3 class="card-header mb-5 text-uppercase bg-info">Lectures information</h3>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered col-xl">
<thead>
<tr class="text-center bg-success text-white">
<th scope="col">#</th>
<th scope="col">Name of the lacture</th>
<th scope="col">Subject</th>
<th scope="col">Contact No</th>
<th scope="col">Photo</th>
</tr>
</thead>
<tbody class="table-dark">
<tr>
<th scope="row" rowspan=2>1</th>
<td rowspan=2>Mr. A.J.M. Hasmy</td>
<td>Web Programming (SW)</td>
<td rowspan=2>000-0000000</td>
<td rowspan=2 class="text-center"><img src="user.png" alt="" width="80px" height="80px"></td>
</tr>
<tr>
<td>Local Area Network (LAN)</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Mr. S. Risath</td>
<td>Software Testing (ST)</td>
<td id="con">000-0000000</td>
<td class="text-center"><img src="user.png" alt="" width="80px" height="80px"></td>
</tr>
<tr>
<th scope="row" rowspan=2>1</th>
<td rowspan=2>Mr. M.I. Imran Ifham</td>
<td>Database System- II (DBS II)</td>
<td rowspan=2 id="con">000-0000000</td>
<td rowspan=2 class="text-center "><img src="user.png" alt="" width="80px" height="80px"></td>
</tr>
<tr>
<td>Planning and Scheduling working Place (PSW)</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>