-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (56 loc) · 2.57 KB
/
Copy pathindex.html
File metadata and controls
68 lines (56 loc) · 2.57 KB
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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.1.3/dist/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>50 Days of Javascript Projects</title>
</head>
<body style="background-color: #222;">
<table class="table table-dark">
<thead class="thead-dark">
<tr>
<th scope="col">Day</th>
<th scope="col">Project</th>
<th scope="col">Url</th>
</tr>
</thead>
<tbody>
<!-- Project 1 => Expanding Cards STARTS -->
<tr>
<th scope="row">1</th>
<td>Expanding Cards</td>
<td><a href="https://mohand2.github.io/50DaysJsProjects/Expanding%20Cards"
class="badge badge-pill badge-success">Live Demo</a></td>
</tr>
<!-- Project 1 => Expanding Cards ENDS -->
<!-- Project 2 => Progress Steps STARTS -->
<tr>
<th scope="row">2</th>
<td>Progress Steps</td>
<td><a href="https://mohand2.github.io/50DaysJsProjects/progress_steps"
class="badge badge-pill badge-success">Live Demo</a></td>
</tr>
<!-- Project 2 => Progress Steps ENDS -->
<!-- Project 3 Rotating navigation STARTS -->
<tr>
<th scope="row">3</th>
<td> Rotating Navigation </td>
<td><a href="https://mohand2.github.io/50DaysJsProjects/Rotating_navigation"
class="badge badge-pill badge-success">Live Demo</a></td>
</tr>
<!-- Project 3 Rotating navigation ENDS -->
<!-- Project 4 Timeline STARTS -->
<tr>
<th scope="row">4</th>
<td> Timeline </td>
<td><a href="https://mohand2.github.io/50DaysJsProjects/timeline"
class="badge badge-pill badge-success">Live Demo</a></td>
</tr>
<!-- Project 4 Timeline ENDS -->
</tbody>
</table>
</body>
</html>