-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework2.html
More file actions
33 lines (31 loc) · 1.14 KB
/
Copy pathhomework2.html
File metadata and controls
33 lines (31 loc) · 1.14 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
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homework 2</title>
<!-- Edit the meta description below as needed -->
<meta name="description" content="Description of Homework 2">
<style>
/* Your CSS styles for this specific homework assignment go here */
</style>
</head>
<body>
<header>
<h1>Homework 2</h1>
</header>
<main>
<!-- Your content for Homework 2 goes here -->
<p>
<a href="part1.html">Part 1: Display Letters and Numbers</a> - This part demonstrates how to display letters and numbers with specific styles.<br>
<a href="part2.html">Part 2: Integer Operations</a> - This part covers operations on integers, including sum, average, product, and finding the smallest and largest.<br>
<a href="extra_credit.html">Extra Credit: Your Extra Task</a> - If you're doing extra credit, describe it here.<br>
</p>
</main>
<script>
function goBack() {
window.location.href = "https://jendoe0110.github.io";
}
</script>
</body>
</html>