-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.html
49 lines (36 loc) · 1.44 KB
/
basics.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
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Interneting Is Easy!</title>
</head>
<body>
<h1>Interneting is Easy!</h1>
<p>First, we need to learn some basic HTML.</p>
<h2>Headings</h2>
<p>Headings define the outline of your site. There are six levels of headings.</p>
<h2>Lists</h2>
<p>This is how you make an unordered list:</p>
<ul>
<li>Add a "ul" element (it stands for unordered list)</li>
<li>Add each item in its own "li" element</li>
<li>They don't need to be in any particular order</li>
</ul>
<p>This is what an ordered list looks like:</p>
<ol>
<li>Notice the new "ol" element wrapping everything</li>
<li>But, the list item elements are the same</li>
<li>Also note how the numbers increment on their own</li>
<li>You should be noticing things is this precise order, because this is an ordered list</li>
</ol>
<h2>Inline Elements</h2>
<p><em>Sometimes</em>, you need to draw attention to a particular word or phrase.</p>
<p>Other times you need to <strong>strong</strong>ly emphasize the importance of a word or phrase.</p>
<p><em><strong>And sometimes you need to shout!</strong></em></p>
<h2>Empty Elements</h2>
<p>Thanks for reading! Interneting should be getting easier now.</p>
<p>Regards, <br>
The Authors</p>
<hr>
<p>P.S. This page might look like crap, but we'll fix that with some CSS soon.</p>
</body>
</html>