-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Page Title</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
</head>
<body>
<h1>MY PROJECTS</h1>
<table>
<tr>
<th>Sr. no.</th>
<th>Project Name</th>
</tr>
<tr>
<td>1.</td>
<td><a href="calculator/index.html">Calculator</a></td>
</tr>
<tr>
<td>2.</td>
<td><a href="SImple-expense-tracker/index.html">Simple Expense Tracker</a></td>
</tr>
<tr>
<td>3.</td>
<td><a href="TIC-TAC-TOE/index.html">TIC TAC TOE</a></td>
</tr>
<tr>
<td>4.</td>
<td><a href="shopping-list/index.html">Shopping list</a></td>
</tr>
<tr>
<td>5.</td>
<td><a href="random-user/index.html">Random user API</a></td>
</tr>
<tr>
<td>6.</td>
<td><a href="Memory-Game/index.html">Memory-Game</a></td>
</tr>
<tr>
<td>7.</td>
<td><a href="Todo-list/index.html">Todo-list</a></td>
</tr>
<tr>
<td>8.</td>
<td><a href="weather/index.html">Weather App</a></td>
</tr>
<tr>
<td>9.</td>
<td><a href="GIthub-profile/index.html">GIthub API</a></td>
</tr>
<tr>
<td>10.</td>
<td><a href="Jumping-Frogs/index.html">Jumping-Frogs</a></td>
</tr>
</table>
</body>
</html>