-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (92 loc) · 3.89 KB
/
index.html
File metadata and controls
98 lines (92 loc) · 3.89 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
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
<!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://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./index.css">
<title>30 Days JS</title>
</head>
<body>
<div class="container">
<header>
<h3>30 Days with JavaScript</h3>
<p>
The purpose for the project is to learn some very basic of Javascript and how it works. Their are various application of JavaScript.
</p>
</header>
<!------Cards------>
<div class="projects container">
<ul class="pricing-list row">
<li class="actv col"><a href="./Ajax-type/index.html">
<span class="title">Ajax-Type</span>
</a></li>
<li class="col"><a href="./array-cardio1/main.js">
<span class="title domain-title">Array Cardio 1</span>
</a></li>
<li class="col"><a href="./Array cardio 2/main.js">
<span class="title domain-title">Array Cardio 2</span>
</a></li>
<li class="col"><a href="./drum-kit/index.html">
<span class="title domain-title">Drum Kit</span>
</a></li>
<li class="col"><a href="./eventBubblingCapaturing/index.html">
<span class="title domain-title">Event Bubbling</span>
</a></li>
<li class="col"><a href="./flex-box play/index.html">
<span class="title domain-title">Flex Box Play</span>
</a></li>
<li class="col"><a href="./hold_shift_to_checkBox/index.html">
<span class="title domain-title">Hold Shift to Checkbox</span>
</a></li>
<li class="col"><a href="./HTML canvas/index.html">
<span class="title domain-title">HTML CANVAS</span>
</a></li>
<li class="col"><a href="./js-clock/index.html">
<span class="title domain-title">JS Clock</span>
</a></li>
<li class="col"><a href="./keyDetection/index.html">
<span class="title domain-title">Key Detection</span>
</a></li>
<li class="col"><a href="./playing with css/index.html">
<span class="title domain-title">Playing with CSS</span>
</a></li>
<li class="col"><a href="./ReferanceAndCopy/index.html">
<span class="title domain-title">Referance And Copy</span>
</a></li>
<li class="col"><a href="./ShadowOnMouseOver/index.html">
<span class="title domain-title">Shadow On Mouse Over</span>
</a></li>
<li class="col"><a href="./ShowOnHover/index.html">
<span class="title domain-title">Shadow on Hover</span>
</a></li>
<li class="col"><a href="./SlideOnScroll/index.html">
<span class="title domain-title">Slide on Scroll</span>
</a></li>
<li class="col"><a href="./SpeechSynthsis/index.html">
<span class="title domain-title">Speech Synthsis</span>
</a></li>
<li class="col"><a href="./stiky navbar/index.html">
<span class="title domain-title">Sticky Navbar</span>
</a></li>
<li class="col"><a href="./StroageAndEvent/index.html">
<span class="title domain-title">Stroage and event</span>
</a></li>
<li class="col"><a href="./TextToSpeech/index.html">
<span class="title domain-title">Speech To Text</span>
</a></li>
<li class="col"><a href="./timeConversion/index.html">
<span class="title domain-title">Time Conversion</span>
</a></li>
<li class="col"><a href="./video player/index.html">
<span class="title domain-title">Video Player</span>
</a></li>
<li class="col"><a href="./Web cam/index.html">
<span class="title domain-title">Web Camera</span>
</a></li>
</ul>
</div>
</div>
</body>
</html>