-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpart1.html
More file actions
48 lines (48 loc) · 1.95 KB
/
part1.html
File metadata and controls
48 lines (48 loc) · 1.95 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<!--Kristian Reyes 9/12/2020 -->
<title>CNIT 133 Homework 2</title>
<meta charset="utf-8">
<meta name="description" content="homework 2 for CCSF CNIT 133">
<meta name="keywords" content="HTML, CSS, Javascript, CCSF, Student">
<meta name="author" content="Kristian Reyes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!--bootstrap -->
</head>
<body>
<main class="grid">
<header class="grid-area grid-area-1">
<h1>CNIT 133 Homework 2 - Basic Operations </h1>
</header>
<nav class="grid-area grid-area-2">
<ul>
<li>
<a href="homework2.html" title="CNIT 133 - HW 2">
Return to CNIT 133 Homework 2 - Basic Operations
</a>
</li>
</ul>
</nav>
<section class="grid-area grid-area-3">
<h2>Part 1 </h2>
<!-- javascript for formatted text with inline styles -->
<script>
document.write("<span style = 'font-family: Times New Roman; color: red;'> ab </span>");
document.write("<span style = 'font-family: Arial; color: blue;'> 12 </span>");
document.write("<span style = 'font-family: Impact; color: green;'><em> 34 </em></span>");
</script>
</section>
<footer class="grid-area grid-area-4">
<p>
© 2020 Kristian Reyes
</p>
</footer>
</main>
</body>
</html>