-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCh3.html
42 lines (32 loc) · 1.44 KB
/
Ch3.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Assignment 2-Ch3</title>
<style>
/* Question 2 */
body { background-color:#EAEAEA;
color: #000033;}
<h1>Embedded CSS</h1>
/* Question 4 */
.new {font-weight: bold; font-style: italic;}
/* Question 5 */
nav a {text-decoration: none;
background-color: White;
color: Black;
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<!-- Question 1 -->
<p style="background-color:Green; color:White;"> This polar vortex that has come through this week has been something that has been very cool (no pun intended). I stepped outside yestarday, which was the coldest day, and just walked up and down the pathway in front of my apartment complex. At first i didnt think it was really that cold, but then the wind blew. you could feel the cold start to creep up and the crazy thing is that it was so subtle! Breathing it in after like a minute also opened my eyes to the severity of the wind chill. A facemask will be the next investment for the future. </p>
<!--Question 2 -->
<h1 style="background-color: #000033; color: #EAEAEA;">Question 2</h1>
<!-- Question 4 -->
<h2 class="new">NEW CLASS: HTML IS THE NEW PYTHON!</h2>
<!-- Question 5 -->
<nav> <a href="https://sites.google.com/site/niuz1732345/home">Pierre's First Website!</a>
<a href="https://webcourses.niu.edu/">NIU's Blackboard</a>
</nav>
</body>
</html>