-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery-lectures.html
More file actions
45 lines (36 loc) · 1.82 KB
/
jquery-lectures.html
File metadata and controls
45 lines (36 loc) · 1.82 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
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>jQuery Lectures</title>
<!-- BS CSS Below-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
p {
color: crimson;
}
</style>
</head>
<body>
<h1>We're gonna talk about jQuery ~ </h1>
<h2>Hello World</h2>
<p class="p-3 border border-dark m-1">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. <span class="span">Accusamus assumenda molestias numquam repellendus tempore ullam.</span> Accusantium atque debitis dignissimos eligendi est expedita, laboriosam nobis possimus, quaerat ratione reprehenderit, <span class="span">sint voluptate.</span>
</p>
<h3>Student's Fav Ice Creams</h3>
<ul id="ice-cream-list">
<li class="list-item">"Banana Royal"</li>
<li class="list-item">"Banana Caramel Crunch"</li>
<li class="list-item">"Almond Joy Type of Thing *IDK*. . chocolate kind of thing. . ya know"</li>
</ul>
<!--Step one: We need to go get jQuery to use jQuery
This should remind us a bit of needing to attach bootstrap's files to use bootstrap...
-->
<!-- jQuery CDN below-->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<!-- Bootstrap JavaScript Below -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Custom JS below-->
<script src="js/jQuery-js.js"></script>
</body>
</html>