-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-6.html
56 lines (43 loc) · 1.09 KB
/
index-6.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
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>jQuery Example</title>
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.min.css">
<script src="assets/vendor/jquery/js/jquery-3.7.0.min.js"></script>
<style>
.selected {
color: blue;
}
.highlight {
background-color: black;
}
.highlight-x {
background-color: rgb(5, 85, 93);
}
.highlight-y {
background-color: yellow;
}
body {
color: aquamarine;
}
</style>
</head>
<body>
<h1>jQuery DOM Manipulation Example</h1>
<div>
<ul id="myList">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
<p id="myListItem">This is a paragraph.</p>
<div class="container">
<p class="sibling">Sibling 1</p>
<p class="selected">Selected Element</p>
<p class="sibling">Sibling 2</p>
<p class="sibling">Sibling 3</p>
</div>
<script src="assets/js/script-6.js"></script>
</body>
</html>