-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject01-01_txt.html
43 lines (35 loc) · 1.03 KB
/
project01-01_txt.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
JavaScript 7th Edition
Chapter 1
Hands-on Project 1-1
Author: James Parker III
Date: 04/14/2023
Filename: project01-01.html
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 1-1</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>
Hands-on Project 1-1
</h1>
</header>
<article>
<h2>Financial Planning Tips</h2>
<script>
// Create ordered list
document.write("<ol>")
document.write("<li> Reduce spending on non-necessities. </li>");
document.write("<li> Use extra money to pay off debt, starting with highest-interest credit cards. </li>");
document.write("<li> Continue paying off debts until you are debt free </li>");
document.write("<li> Put a fixed percent of your pay aside every payday. </li></ol>");
</script>
</article>
</body>
</html>