-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2_add_css.html
More file actions
34 lines (26 loc) · 869 Bytes
/
2_add_css.html
File metadata and controls
34 lines (26 loc) · 869 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
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adding Style with CSS</title>
<style>
/* STUDENT: Add your CSS styles below this line */
/* Make the h1 heading blue */
/* Change the background color of the page */
/* Center align the main heading */
/* Add a border around the paragraph */
/* Make the list items have bold text */
</style>
</head>
<body>
<h1>Welcome to My Styled Page</h1>
<p>This paragraph will look much better with some CSS styling!</p>
<h2>My Goals:</h2>
<ul>
<li>Learn HTML and CSS</li>
<li>Build my first website</li>
<li>Understand how websites work</li>
</ul>
</body>
</html>