-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutput.html
65 lines (42 loc) · 1.08 KB
/
output.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
<html>
<head>
<title> </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<table class="table">
<thead class="thead-dark">
<tr>
<th> name </th>
<th> age </th>
</tr>
</thead>
<tbody>
<tr>
<td>Abhishek</td>
<td> 27</td>
</tr>
<tr>
<td>Vinit</td>
<td> 70</td>
</tr>
<tr>
<td>Pawan</td>
<td> 90</td>
</tr>
<tr>
<td>korean</td>
<td> 21</td>
</tr>
</tbody>
</table>
<div class="alert alert-success">
<strong>Exception Found:</strong> Error occured @line 27.
</div>
</body>
</html>