-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_lecture.html
More file actions
45 lines (41 loc) · 1.03 KB
/
css_lecture.html
File metadata and controls
45 lines (41 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSS Lecture</title>
<!-- Embedded Style Sheet-->
<style>
.fancy-header{
color: blue;
text-decoration: underline;
}
.paragraph{
color: brown;
text-emphasis: sesame;
font-style: normal;
}
</style>
<link rel="stylesheet" href="css/css_intro_lec.css">
</head>
<body>
<h1 style="color: orange; accent-color: black; text-decoration: underline;background-color: black">Intro to CSS - This line uses element level styling</h1>
<br>
<h2 class="fancy-header">I Have Style For This with an embedded stylesheet</h2>
<p class="paragraph" style="color: red">This is a paragraph</p>
<p id="unique">This is the <strong>Intro</strong> to CSS</p>
<p id="color">Exploring Colors</p>
<ol >
<li>an</li>
<li>item</li>
<li>here</li>
</ol>
<ul id="ulOne">
<li>Lots</li>
<li>of</li>
<li>Stuff</li>
<li>Can</li>
<li>go</li>
<li>here</li>
</ul>
</body>
</html>