-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (103 loc) · 3.94 KB
/
index.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
113
114
115
116
117
118
119
<!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>23DEV050 | Tushar's Activities</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
</head>
<body>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Project Title</th>
<th scope="col">Mark as done</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td> <a href="/TicTacToe/index.html">Tic Tac Toe</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">2</th>
<td><a href="/2048/index.html">2048 Game</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">3</th>
<td><a href="/Typing Test App/index.html">Typing Test</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">4</th>
<td><a href="/Color Cube/index.html">Color Cube</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">5</th>
<td><a href="http://localhost:7001">Auth using JWT</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">6</th>
<td><a href="http://localhost:7002">Job Application Node</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">7</th>
<td><a href="http://localhost:7003">Pagination and Searching</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">8</th>
<td><a href="/MySQL Insert Script/index.html">MySQL Insert Script</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">9</th>
<td><a href="http://localhost:7004">Excel Task</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">10</th>
<td><a href="/Figma Design/index2.html">Jaydeep Vala | Prototype: 1</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">11</th>
<td><a href="/Practice-2/index.html">Jaydeep Vala | Prototype: 2</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">12</th>
<td><a href="http://localhost:7006">Pagination App</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">13</th>
<td><a href="/Rock Paper Scissors/index.html">Rock Paper Scissors</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">14</th>
<td><a href="https://august.appdemoserver.com/">HRMS Project</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">15</th>
<td><a href="/timezones.md">TimeZone Notes</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
<tr>
<th scope="row">16</th>
<td><a href="http://localhost:7005">Dynamic DropDown Generate</a></td>
<td><input type="checkbox" name="" id=""></td>
</tr>
</tbody>
</table>
</body>
</html>