-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelloButtonPress.html
More file actions
36 lines (32 loc) · 978 Bytes
/
helloButtonPress.html
File metadata and controls
36 lines (32 loc) · 978 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="MoooseOnTheLoose">
<meta name="date" content="2024-05-17T12:00:00+1:00">
<meta name="keywords" content="metadata, meta, html">
<meta name="description" content="Summarize in 2-3 sentences what the page is about.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="robots" content="noindex">
<title>Window Title</title>
<style>
p {
max-width: 220px;
width: 100%;
margin: 0 auto;
padding: 30px;
border: 2px solid blue;
background-color: bisque;
text-align: center;
}
</style>
<script src="hello.js" defer></script>
<script src="addText.js" defer></script>
<script src="pressButton.js" defer></script>
</head>
<body>
<h1>JavaScript during execution</h1>
<p>Test JavaScript</p>
<button id="changeBtn" type="button">Press button</button>
</body>
</html>