-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjQuery-essential-methods.html
More file actions
18 lines (18 loc) · 947 Bytes
/
jQuery-essential-methods.html
File metadata and controls
18 lines (18 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Essential Methods</title>
<link rel="stylesheet" href="css/jQuery-essential-methods.css">
</head>
<body>
<h1>Essential jQuery Methods</h1>
<h2 id="leader">I am the Leader</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cum eos inventore itaque laboriosam, omnis quidem sapiente voluptatibus. Aperiam error est inventore quas sapiente, ut vitae voluptate. Dicta quam quo tempore?</p>
<h2 id="follower">I am the follower</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam beatae blanditiis culpa debitis dolor molestiae nulla odio officiis omnis perspiciatis praesentium ratione reiciendis, similique soluta suscipit tenetur totam veniam vero.</p>
<button id="font-changer">Change Font Family</button>
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/jQuery-essential-methods.js"></script>
</body>
</html>