-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab3.html
More file actions
35 lines (26 loc) · 747 Bytes
/
lab3.html
File metadata and controls
35 lines (26 loc) · 747 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
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<title>Web Programming Lab 3</title>
<h1>Lab 3</h1>
<h3>Exercise 1</h3>
<p>If you click me, I will dissapear</p>
<p>Click me away!</p>
<p>Click me too</p>
<div id="ex2">
<h3>Excercise 2</h3>
</div>
</div>
<p id="show_hide">text to show and hide</p>
<button id="hide">Hide</button>
<button id="show">Show</button>
</div>
</div>
<p id="toggle_text">text to toggle</p>
<button id="toggle">Toggle</button>
</div>
<button id="name">Click me!</button>
</html>