-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (41 loc) · 1.56 KB
/
index.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
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<!-- https://www.youtube.com/watch?v=2n5EBLBHx-A -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>jQuery Starter</title>
<style>
.box{
width: 100px;
width: 100px;
background-color: tomato;
}
</style>
</head>
<body>
// Just testing for pushing
<!-- class selector -->
<!-- <p class="show">Paragraph 1- Lorem1</p>
<p class="show">Paragraph 2- Lorem2</p>
<p class="show">Paragraph 3- Lorem3</p>
<p class="show">Paragraph 4- Lorem4</p> -->
<!-- element selector -->
<p class="show" id="text1">Paragraph 1- Lorem1</p>
<p class="second" id="second">Paragraph 2- Lorem2</p>
<p class="show" id="third">Paragraph 3- Lorem3</p>
<p class="show">Paragraph 4- Lorem4</p>
<p id="fadetest">Paragraph 4- Lorem4</p>
<p id="keycheck">Key check</p>
<button id="button1">click Me!</button>
<button id="fadebutton">fade Me!</button>
<div class="box">Lorem ipsum, dolor sit amet consectetur Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, corporis.</div>
<button id="boxanimate">Animate Tomato Box</button>
<button id="btn_manipulation">Dom check!</button>
<button id="valcheck" value="30">Paramter value</button>
<script src="Jquery.js"></script>
<!-- <script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script> -->
<script src="script.js"></script>
</body>
</html>