forked from PomoRev/CST8285_S22
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
28 lines (23 loc) · 1.04 KB
/
example.html
File metadata and controls
28 lines (23 loc) · 1.04 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Note that for Prof. Emanuel's labs the author and email meta tags are required on
all HTML files submitted for labs and assignments. -->
<meta name="author" content="Prof. Frank Emanuel">
<meta name="email" content="emanuef@algonquincollege.com">
<meta name="date" content="2022-05-09">
<link rel="stylesheet" href="css/example.css">
<script src="js/example.js"></script>
<title>HTML 5.0 Compliant Web Document</title>
</head>
<body>
<!-- Note that formatting is best relegated to CSS. What we do in HTML is semantic
markup of the web document so that we can target semantic sections with our
CSS and JavaScript. A great naming convention is a form of natural commenting. -->
<header>HTML 5.0 Compliant Web Document</header>
<p class="bodytext">Hello World.</p>
<button onclick="helloWorld()">Click to have JS say hello</button>
</body>
</html>