-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasics.html
More file actions
67 lines (49 loc) · 1.67 KB
/
basics.html
File metadata and controls
67 lines (49 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>First Page</title>
</head>
<body>
<h1>Programing is easy</h1>
<p>First, we need to learn some basic HTML.</p>
<h6>Headings</h6>
<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>
<ul>
<li><p>Add a "ul" element (it stands for unordered list)</p></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>Regards,<br/>
The Authors</p>
<!-- (You will be shunned for this) -->
<p>This paragraph needs some space below it...</p>
<br/><br/><br/><br/><br/><br/><br/><br/>
<p>So, I added some hard line breaks.</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>