forked from foocoding/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
20 lines (20 loc) · 408 Bytes
/
example.html
File metadata and controls
20 lines (20 loc) · 408 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Sample exercise</title>
<style>
body {
font-family: sans-serif;
}
#advice {
color: slateblue;
}
</style>
</head>
<body>
<h3>Here is your advice for the day:</h3>
<h1 id="advice"></h1>
<script type="text/javascript" src="./lecture-exercises.js"></script>
</body>
</html>