-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>Slider Carousel</title>
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<div>
<a href="#">Home</a>
<ul>
<li><a href="#"> Tutorial</a></li>
<li><a href="#"> Bangladesh</a></li>
</ul>
<div class="my-div">
<a href="#">Contact</a>
</div>
</div>
<div>
<button onclick="btnClick()">click me 1</button>
<button onclick="btnClick2()">click me 2</button>
<p>you haven't clicked any button</p>
</div>
<div id="div3">
<h2>hello world</h2>
<h2>Good Bye</h2>
</div>
<script src="./scripts/index.js"></script>
<!-- <script src="./scripts/script.js"></script>
<script src="./scripts/operation.js"></script>
<script src="./scripts/gradeing.js"></script>
<script src="./scripts/largeNumber.js"></script>
<script src="./scripts/switchCase.js"></script>
<script src="./scripts/loop.js"></script>
<script src="./scripts/ternary.js"></script>
<script src="./scripts/function.js"></script>
<script src="./scripts/iifes.js"></script>
<script src="./scripts/array.js"></script>
<script src="./scripts/object.js"></script>
<script src="./scripts/mathObject.js"></script>
<script src="./scripts/guessing.js"></script> -->
<!-- <script src="./scripts/date.js"></script> -->
</body>
</html>