-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew_page.html
More file actions
44 lines (40 loc) · 865 Bytes
/
Copy pathnew_page.html
File metadata and controls
44 lines (40 loc) · 865 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
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Page</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
#message {
font-size: 16px;
margin-bottom: 10px;
color: green;
}
button {
padding: 8px 16px;
cursor: pointer;
border: 1px solid #ccc;
border-radius: 4px;
background: #fff;
}
button:hover {
background-color: #f0f0f0;
}
</style>
</head>
<body>
<!-- Empty container for the message -->
<div id="message"></div>
<!-- Button -->
<button onclick="showMessage()">Click Me</button>
<script>
function showMessage() {
document.getElementById("message").innerText = "Button was clicked!";
}
</script>
</body>
</html>