-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (23 loc) · 703 Bytes
/
index.html
File metadata and controls
41 lines (23 loc) · 703 Bytes
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
<!DOCTYPE html>
<head>
<title>Web Development Notes</title>
<link rel="icon" href="Images/Icon.jpg">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<li onclick="html()">HTML</li>
<li onclick="css()">CSS</li>
<li onclick="javascript()">JavaScript</li>
<li onclick="bootstrap()">Bootstrap</li>
<li onclick="react_js()">React JS</li>
</nav>
<hr>
<div id="notes"></div>
<hr>
<footer>
<p id="copyright">© <a href="https://hitarthpathak.github.io/" target="_blank">Hitarth Pathak</a></p>
</footer>
</body>
<script src="script.js"></script>
</html>