-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (108 loc) · 3.46 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
<!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> List of Projects</title>
<link rel="stylesheet" href="css/toc.css">
</head>
<body>
<div class="container">
<table><caption>Projects</caption>
<thead>
<tr>
<th>ID</th>
<th>Project Name</th>
</tr>
</thead>
<tbody>
<tr class='clickable-row' data-href='projectdesc(1)'>
<td>1</td>
<td><a href="projects/p01/signup.html">HTML Form - Client side form validation with HTML</a> </td>
</tr>
<tr>
<td>2</td>
<td><a href="projects/p02/index.html"> Seat Selection at Movie Theater </a></td>
</tr>
<tr>
<td>3</td>
<td>Video Player</td>
</tr>
<tr>
<td>4</td>
<td>Calculating Exchange Rates</td>
</tr>
<tr>
<td>5</td>
<td>DOM Arrays Methods</td>
</tr>
<tr>
<td>6</td>
<td>Landing Page with Sliding Menu and Modal Window</td>
</tr>
<tr>
<td>7</td>
<td>Classic Hangman Game</td>
</tr>
<tr>
<td>8</td>
<td>Random Food Selector</td>
</tr>
<tr>
<td>9</td>
<td>Expense Tracking</td>
</tr>
<tr>
<td>10</td>
<td>Music Player</td>
</tr>
<tr>
<td>11</td>
<td>Music Player</td>
</tr>
<tr>
<td>12</td>
<td>Infinite Scrolling App</td>
</tr>
<tr>
<td>13</td>
<td>Fast Typing Game</td>
</tr>
<tr>
<td>14</td>
<td>Memory Cards</td>
</tr>
<tr>
<td>15</td>
<td>A text to speech app for non-verbal people. Pre-made buttons and custom text speech.
This project uses the Web Speech API</td>
</tr>
<tr>
<td>16</td>
<td>Search for Lyrics</td>
</tr>
<tr>
<td>17</td>
<td>Breathing Exercise for Relaxing</td>
</tr>
<tr>
<td>18</td>
<td>Sortable List</td>
</tr>
<tr>
<td>19</td>
<td>Breakout</td>
</tr>
<tr>
<td>20</td>
<td>New Year Countdown</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
<script src="/js/signup.js"></script>
</body>
</html>