-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1012 Bytes
/
index.html
File metadata and controls
33 lines (33 loc) · 1012 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="description" content="testyourmine's site">
<meta name="keywords" content="HTML, CSS">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div>
<h1>First css example</h1>
<p>Paragraph 1</p>
</div>
<div class="class1">
<h2>Class 1 heading</h2>
<p>Class 1 text</p>
<div id="Special_Section">
<button onclick="showSurprise()">Click for a fun surprise</button>
</div>
<script>
function showSurprise() {
alert("Surprise!");
}
</script>
</div>
<div class="class2">
<h1>Class 2 heading</h1>
<p>Class 2 text</p>
<a href="https://metroidconstruction.com/">Happy Hacking! (Link)</a>
</div>
<img src="yippee.gif" width="304">
</body>
</html>