-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (19 loc) · 832 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (19 loc) · 832 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Listener</title>
</head>
<body>
<!-- <h1>Event Listeners</h1> -->
<!-- <button onclick="alert('Hello Class')">Hello</button> -->
<!-- <button onclick="sayHello()">Hello</button> -->
<!-- <button id="helloBtn">Hello</button> -->
<div style="height: 300px; width: 300px; margin: 0px auto; margin-top: 20px">
<img id="cow_img" style="height: 100%; width: 100%; cursor: pointer;"
src="https://images.unsplash.com/photo-1755127803263-bffee0361cfc?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHwxMnx8fGVufDB8fHx8fA%3D%3D" />
</div>
<script src="app.js"></script>
</body>
</html>