-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (23 loc) · 862 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>jquery</title>
<meta name="viewpoint" content="width-device-width,initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<button id="dark-btn">dark</button>
<button id="glow-btn">glow</button>
<button id="spin-btn">spin</button>
<button id="reveal-btn">reveal</button>
<div class="flex">
<div class="box draggable"></div>
<div class="box draggable"></div>
<div class="box draggable"></div>
</div>
<img class="chair draggable" src="chair.png" alt="vector image of a wooden chair">
<script src="jquery-3.6.1.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>