-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart1.html
More file actions
28 lines (27 loc) · 833 Bytes
/
Copy pathpart1.html
File metadata and controls
28 lines (27 loc) · 833 Bytes
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">
<title>Part 1: Display Letters and Numbers</title>
<style>
body {
font-family: Arial, sans-serif;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<p>
<a href="homework2.html">Back to Homework 2</a>
</p>
<script>
// Display the specified content using document.write()
document.write('<strong style="font-family: Times New Roman; color: red;">xy</strong> ');
document.write('<span style="font-family: Arial; color: blue;">12</span> ');
document.write('<span style="font-family: Impact; color: green; font-style: italic;">89</span>');
</script>
</body>
</html>