-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Complete Javascript</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body style="background-color: #212121; color: white">
<nav>
<a href="index.html">Home Page</a>
<a
href="https://github.com/sohail019/Complete-Javascript/tree/main/03%20-%20Chai%20aur%20Javascript/04%20-%20Projects%20for%20DOM"
>Github</a
>
</nav>
<main>
<h1>Complete Javascript</h1>
<div class="box">
<a
class="folder-link"
href="./01 - The Complete JS By Jonas/index.html"
>01 - The Complete JS By Jonas</a
>
</div>
<div class="box">
<a
class="folder-link"
href="./02 - The Ultimate JS By Code With Harry/index.html"
>02 - The Ultimate JS By Code with Harry</a
>
</div>
<div class="box">
<a class="folder-link" href="./03 - Chai aur Javascript/index.html"
>03 - Chai aur Javascript</a
>
</div>
<div class="box">
<a
class="folder-link"
href="./04 - Complete JS Series By ProCodrr/index.html"
>04 - Complete JS Series By Procodrr</a
>
</div>
</main>
<script src="script.js"></script>
</body>
</html>