Click on any button
Heading Tag
Break Tag
Strong Tag
Ordered List
Super Script Tag
Sub Script Tag
Horizontal Row
Emphasized Tag
Unordered List
Description List
Write your code here.
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> <h1>Welcome to my page</h1> <h1>Click on any button </h1> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> <h1>This is Heading -1 </h1> <h2>This is Heading -1 </h2> <h3>This is Heading -1 </h3> <h4>This is Heading -1 </h4> <h5>This is Heading -1 </h5> <h6>This is Heading -1 </h6> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> This line will <br /> Show in next paragraph. </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> X<sup>2</sup> + y<sup>2</sup> = z<sup>2</sup> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> C + O<sub>2</sub> =====> CO<sub>2</sub> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>This is a paragraph</p> <hr /> <p>This is another paragraph.</p> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>Write your HTML code here </p> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> This text is <strong> Bold Now</strong>. </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> This text is <em> Italic Now.</em>. </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> <ol> <li>Item - 1</li> <li>Item - 2</li> <li>Item - 3</li> <li>Item - 4</li> </ol> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> <ul> <li>Item - 1</li> <li>Item - 2</li> <li>Item - 3</li> <li>Item - 4</li> </ul> </body> </html>
<html> <head> <title>Hello World</title> </head> <body> <!--Sample code --> <p>click <strong>run code</strong> to run your selected button.</p> <hr /> <dl> <dt>Description Title</dt> <dd>Data - 1</dd> <dd>Data - 2</dd> <dd>Data - 3</dd> <dd>Data - 4</dd> </dl> </body> </html>
Output