-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormatting.html
More file actions
45 lines (22 loc) · 826 Bytes
/
Formatting.html
File metadata and controls
45 lines (22 loc) · 826 Bytes
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
<html>
<head>
<!--The link to the stylesheet should be contained
within the head tags-->
<link rel="stylesheet" href="mystyle.css" type="text/css">
<title>
Art
</title>
</head>
<body>
<a href="index.html"> home</a> <a href="Basic_Table.html"> Basic Table</a> <a href="Lists.html"> Lists</a> <a href="media.html"> media</a> <a href="blocking.html"> blocking</a> <a href="page_layout.html"> page layout</a>
<h4>Cavity</h4>
<p> This Page shows how to do basic formatting </p>
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
<p><code>This is computer output</code></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
<p>This <br /> forces <br /> a <br /> line break </p>
</body>
</html>