This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview-formatting.html
89 lines (70 loc) · 2.09 KB
/
review-formatting.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html>
<head>
<title>LUNCHTML 2.0 - Review: Formatting</title>
<link rel="stylesheet" type="text/css" href="style-review.css" />
<link href='http://fonts.googleapis.com/css?family=Ribeye+Marrow' rel='stylesheet' type='text/css'>
</head>
<body>
<h1>Formatting</h1>
<a name="strong"><br/><br/><br/><h2><strong></h2>
HTML:
<pre>
make a <strong>bold statement</strong>
</pre>
RESULT:
make a <strong>bold statement</strong>
<div class="nav">
<a href="#strong"><strong></a> |
<a href="#em"><em></a> |
<a href="#color"><font-color></a> |
<a href="#size"><font-size></a>
</div>
<a name="em"><br/><br/><br/><h2><em></h2>
HTML:
<pre>
make an <em>emphasized statement</em>
</pre>
RESULT: make an <em>emphasized statement</em>
<div class="nav">
<a href="#strong"><strong></a> |
<a href="#em"><em></a> |
<a href="#color"><font-color></a> |
<a href="#size"><font-size></a>
</div>
<a name="color"><br/><br/><br/><h2><font-color></h2>
HTML:
<pre>
make a <font color="red" >font color statement</font>
</pre>
RESULT: make a <font color="red">font color statement</font>
<div class="nav">
<a href="#strong"><strong></a> |
<a href="#em"><em></a> |
<a href="#color"><font-color></a> |
<a href="#size"><font-size></a>
</div>
<a name="size"><br/><br/><br/><h2><font-size></h2>
HTML:
<pre>
make a <font size="5">font size statement</font>
</pre>
RESULT: make a <font size="5" >font size statement</font>
<div class="nav">
<a href="#strong"><strong></a> |
<a href="#em"><em></a> |
<a href="#color"><font-color></a> |
<a href="#size"><font-size></a>
</div>
<a name="br"><br/><br/><br/><h2><br></h2>
HTML:
<pre>
</pre>
RESULT:
<div class="nav">
<a href="#strong"><strong></a> |
<a href="#em"><em></a> |
<a href="#color"><font-color></a> |
<a href="#size"><font-size></a>
</div>
</body>
</html>