-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
37 lines (30 loc) · 902 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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="/">Home</a></li>
<li><a href="cssEffect.html">Csseffect</a></li>
<li><a href="pract.html">Practice</a> </li>
<li><a href="">Contact</a> </li>
</ul>
</nav>
</body>
<script src="api.js"></script>
<script>
// window.addEventListener("wheel",(e)=>{
// if(e.deltaY<0){
// console.log("scrolling up");
// }
// else if(e.deltaY>0){
// console.log("scroling down");
// }
// });
</script>
</html>