-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjQuery_events_practice.html
More file actions
28 lines (19 loc) · 943 Bytes
/
jQuery_events_practice.html
File metadata and controls
28 lines (19 loc) · 943 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
// todo: change the font-size to 32px when you double click on the paragraph
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css">
<title>Title</title>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Alias aspernatur culpa cupiditate hic inventore odio quidem quod! Ad autem blanditiis dicta dignissimos excepturi illum nemo, officia quaerat quo reprehenderit, veniam.</p>
<!-- BOOTSTRAP -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- JQUERY IMPORT HERE:-->
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<!-- MY JAVASCRIPT FILE-->
<script src="./js/jQuery_events_practice.js"></script>
</body>
</html>