-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (66 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
73 lines (66 loc) · 2.82 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
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<head>
<body>
<div class="jumbotron text-center">
<h1>JavaScript30</h1>
<h4>
30 Day Vanilla JS Coding Challenge by
<a href="https://wesbos.com/" target="_blank" rel="noopener">WesBos</a>
</h4>
<h6>Divyashree Sreenivasa</h6>
</div>
<div class="container text-center">
<div class="row">
<div class="col-md-4">
<a href="01-JS-Drum-Kit/index.html" target="_blank" rel="noopener">
<div class="card box-shadow">
<div class="card-heading">
<span>#1</span>
</br>
<span>JS Drum Kit<span>
</div>
<div>
</a>
<a href="02-JS-CSS-Clock/index.html" target="_blank" rel="noopener">
<div class="card box-shadow">
<div class="card-heading">
<span>#2</span>
</br>
<span>JS CSS Clock<span>
</div>
<div>
</a>
<a href="03-CSS-Variables/index.html" target="_blank" rel="noopener">
<div class="card box-shadow">
<div class="card-heading">
<span>#3</span>
</br>
<span>CSS Variables<span>
</div>
<div>
</a>
<a href="04-Array-Cardio-1/index.html" target="_blank" rel="noopener">
<div class="card box-shadow">
<div class="card-heading">
<span>#4</span>
</br>
<span>Array Cardio 1<span>
</div>
<div>
</a>
</div>
</div>
<div>
<!-- Including jquery, popper.js and bootstrap -->
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/popper.js/dist/umd/popper.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>