html
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
<!DOCTYPE html>
<html>
<head>
<title>HTML REFRESHER</title>
</head>
<body>
<h1 align="center">HTML Refresher</h1>
<div>
<p>This is a paragraph<br/>This is a line break</p>
<p>Here's another example where we </p>
<hr/>
<p>break the text line with a horizontal line and notice it still aligns text to the left after the break by default</p>
<hr align="left" width="30%"/>
<p><i>Italic Text</i></p>
<p><em>Emphasized Text</em>(**this gets higher priority than italic)</p>
<p><b>Bold text</b></p>
<p><strong>Strong text</strong>(**this gets higher priority than bold)</p>
<p><s>strikethrough text</s></p>
<p><del>deleted text</del></p>
<p>This is<sup>I forget what this is called</sup>text</p>
<p>This is<sub>the opposite of the previous</sub>kind of text</p>
<p><small>This is small text</small></p>
<p><big>This is big text</big></p>
<p><ins>This is inserted text</ins></p>
<p><u>This is underlined text</u></p>
</div>
<div>
<table border="2">
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run