-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectors.html
More file actions
34 lines (34 loc) · 1.01 KB
/
selectors.html
File metadata and controls
34 lines (34 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<title>second file</title>
<link rel="stylesheet" href="./jq.css" />
</head>
<body>
<div id="div1">
<img
style="height: 300px; width: 500px"
src="https://buffer.com/cdn-cgi/image/w=1000,fit=contain,q=90,f=auto/library/content/images/size/w1200/2023/10/free-images.jpg"
id="img1"
/>
</div>
<div id="div2">
<p class="para">This is first para</p>
<p class="para">This is second para</p>
</div>
<div id="div3">
<p>this is third para</p>
<li>hi</li>
<li>my</li>
<li>name</li>
<li>is</li>
<li>Prachi</li>
<li>Sharma</li>
<li>Thankyou</li>
</div>
<button onclick="change()">click to change the color</button>
<script type="text/javascript" src="jquery-3.7.1.js"></script>
<!--There are mainly 2 ways to add jquery 1 is file 2 is cdn it requires active internet connection -->
<script src="./selectorsjs.js" type="text/javascript"></script>
</body>
</html>