-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss-intro-notes.html
More file actions
30 lines (25 loc) · 1.1 KB
/
Copy pathcss-intro-notes.html
File metadata and controls
30 lines (25 loc) · 1.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS NOTES</title>
<link rel="stylesheet" href="css/css-into-notes.css">
</head>
<body>
<div id="container">
<h1 >Intro to CSS</h1>
<h1>Sub-heading</h1>
<p id="para">This section will discuss CSS</p>
<p>This paragraph has <em>inherited</em>text</p>
<!--THIS STARTS SELECTORS AND PROPERTIES LESSON-->
<h1 class="content hTags" >selectors and properties</h1>
<h2 id="header2"class="content hTags">you can generate lorem text by typing lorem(tab)</h2>
<h4 id="header4" class="content hTags">below is my lorem content</h4>
<p class="content">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus adipisci amet autem consectetur debitis delectus ducimus eos error, esse eveniet explicabo facere maxime, neque praesentium quasi similique ullam velit voluptas?</p>
</div>
<a href="css-intro-notes.html">Click me</a>
</body>
</html>