-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework6.html
More file actions
37 lines (36 loc) · 1.25 KB
/
Copy pathhomework6.html
File metadata and controls
37 lines (36 loc) · 1.25 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CNIT 133 Homework 6 - Objects</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: grey;
color: white;
text-align: center;
padding: 20px;
}
a {
color: pink;
text-decoration: none;
display: block; /* Makes each link appear on a new line */
margin: 10px 0;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>CNIT 133 Homework 6 - Objects</h1>
<a href="part1_6.html">Part 1: Number Analysis</a>
<p>Enter a number with 4 decimals and see various mathematical operations performed on it.</p>
<a href="part2_6.html">Part 2: Character Count</a>
<p>Type content and a character to see how many times the character appears in the content.</p>
<a href="part3_6.html">Part 3: Phone Number Splitter</a>
<p>Enter a phone number in a specific format and see it split into area code, first 3 digits, and last 4 digits.</p>
<a href="jendoe0110.github.io">Back to Main Course Page</a>
</body>
</html>