-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathelements.html
44 lines (44 loc) · 1.38 KB
/
elements.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
<!DOCTYPE html>
<html>
<head>
<title>Supported elements</title>
</head>
<body style="font-family: 'Times-Roman';">
tag A: <a href="https://www.google.com">link</a> <br>
tag B: <b>bold</b> <br>
tag Blockquote: <blockquote>block quotation element</blockquote>
tag Br: new line <br>
tag Code: <code>inline code element</code> <br>
tag Del: <del>strike-through</del> <br>
tag Div: <div>block element</div>
tag Em: <em>italic</em> <br>
tag H1: <h1>heading h1</h1>
tag H2: <h2>heading h2</h2>
tag H3: <h3>heading h3</h3>
tag H4: <h4>heading h4</h4>
tag H5: <h5>heading h5</h5>
tag H6: <h6>heading h6</h6>
tag Hr: horizontal line <hr>
tag I: <i>italic</i> <br>
tag Ins: <ins>underline</ins> <br>
tag Img: <img src="./examples/image.jpg" style="width: 100px"> image <br>
tag Mark: <mark>highlight</mark> <br>
tag Ol: <ol>
<li>ordered list</li>
<li>tag Li: list item (ordered)</li>
</ol>
tag P: <p>block element</p>
tag Pre: <pre>preformatted text element</pre>
tag S: <s>strike-through</s> <br>
tag Small: <small>smaller text</small> <br>
tag Span: <span>inline element</span> <br>
tag Strong: <strong>bold</strong> <br>
tag Sub: <sub>subscript element</sub> <br>
tag Sup: <sup>superscript element</sup> <br>
tag U: <u>underline</u> <br>
tag Ul: <ul>
<li>unordered list</li>
<li>tag Li: list item (unordered)</li>
</ul>
</body>
</html>