-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselector-properties-lec.html
More file actions
33 lines (25 loc) · 907 Bytes
/
selector-properties-lec.html
File metadata and controls
33 lines (25 loc) · 907 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="css/selector-properties-lec.css"
</head>
<body>
<div id="container">
<h1 class="content">selector-properties-lec</h1>
<p>Style won't apply to this</p>
</div>
<h2 id="header2" class="content">You can generate a lorem text by typing lorem(tab)</h2>
<h3 class="fancy-header extra-large">Header Text</h3>
<p class="fancy-header">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem consequatur corporis eos error exercitationem illo, nam, nesciunt omnis pariatur qui quidem quos reprehenderit, repudiandae sapiente sit totam ullam! Exercitationem, quae.</p>
<a href="https://www.google.com/">Go to Google</a>
<p id="color">Exploring Color</p>
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>
<p>This is my <em>inherited</em> content</p>
</body>
</html>