-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
85 lines (66 loc) · 2.59 KB
/
index.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
<html>
<body>
<p align="left">
left: it is
<b>used to align</b> text to the left margin
</p>
<p align="right">
Right: it is
<big>used to align</big> text to the left margin
</p>
<p align="center">
Center: it is
<i>used to align</i> text to the left margin
</p>
<p align="justify">
<pre>
justify: it is <s>used to align</s> text to the left margin,
justify: it is <small>used to align</small> text to the left margin
justify: it is <sub>used to align</sub> text to the left margin
justify: it is <sup>used to align</sup> text to the left margin
justify: it is <tt>used to align</tt> text to the left margin
justify: it is <u>used to align</u> text to the left margin
justify: it is <cite>used to align</cite> text to the left margin
justify: it is <code>used to align</code> text to the left margin
justify: it is <em>used to align</em> text to the left margin
justify: it is <ins>used to align</ins> text to the left margin
justify: it is <kbd>used to align</kbd> text to the left margin
justify: it is <samp>used to align</samp> text to the left margin
justify: it is <strong>used to align</strong> text to the left margin
</pre>
</p>
<pre>
<font size="1"> size 1</font>
<font size="2"> size 2</font>
<font size="3"> size 3</font>
<font size="4"> size 4</font>
<font size="5"> size 5</font>
<font size="6"> size 6</font>
<font size="7"> size 7</font>
</pre>
<pre>
<font color="red"> Course Cube</font>
<font color="FF0000"> Course Cube</font>
<font color="green"> Course Cube</font>
<font color="00FF00"> Course Cube</font>
<font color="blue"> Course Cube</font>
<font color="0000FF"> Course Cube</font>
</pre>
<pre>
<font face="verdana"> Course Cube</font>
<font face="arial,serif,times"> Course Cube</font>
</pre>
<font size="5">
<font color="yellow">
<font face="arial,serif,times"> Course Cube</font>
</font>
</font>
<br/>
<hr size="12"/>
<hr size="12" width="60%"/>
<hr size="12" width="60%" align="left"/>
<hr size="12" width="60%" align="right"/>
<hr size="12" width="60%" align="justify"/>
<hr size="12" width="60%" noshade="noshade"/>
</body>
</html>