Where you can :
<!DOCTYPE html><html>
<head>
<title></title>
</head>
<body>
</body>
</html><h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heading Five</h5>
<h6>Heading Six</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>Link
Image
Format (bold, italic, small, etc)
Code
<table>
<tr>
<th>No.</th>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>1</td>
<td>Paijo</td>
<td>25</td>
</tr>
<tr>
<td>2</td>
<td>Paimin</td>
<td>28</td>
</tr>
</table><ul>
<li>Android</li>
<li>iOS</li>
<li>Blackberry</li>
</ul>
<ol>
<li>Guitar</li>
<li>Piano</li>
<li>Drum</li>
</ol>Block (div & span)
Iframe
<form action="">
<input type="text" name="firstname">
<br>
<input type="password" name="password">
<br>
<input type="radio" name="gender" value="male" checked> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<br>
<select name="language">
<option value="ruby">Ruby</option>
<option value="php">PHP</option>
<option value="go">Go</option>
</select>
<br>
<textarea name="description">
</textarea>
<br>
<input type="checkbox" name="brand" value="Yamaha"> I like Yamaha<br>
<input type="checkbox" name="brand" value="Honda"> I like Honda
<br>
<input type="submit" value="Submit">
</form><video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video> <svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="blue" stroke-width="4" fill="red" />
</svg>h1{
color: red;
}
h1.black{
color: #000000;
}
p#lorem{
background-color: blue;
}div.bottom-section{
margin-bottom: 10px;
padding-top: 20px;
}
div.main{
margin: 10 10 10 10;
}
div.right{
padding-left: 10px;
padding-right: 10px;
}
body{
font-family: "Times New Roman", Times, serif;
}
h1{
font-size: 25px;
}
p.title{
font-weight: bold;
font-size: 125%;
}