Skip to content

Instantly share code, notes, and snippets.

@Parassharmaa
Created September 21, 2016 12:27
Show Gist options
  • Save Parassharmaa/935ac56664174890537775c9a82acf81 to your computer and use it in GitHub Desktop.
Save Parassharmaa/935ac56664174890537775c9a82acf81 to your computer and use it in GitHub Desktop.
basic html tags
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta lang="en-us">
<title>Abc</title>
</head>
<body>
<b>I am bold</b><hr>
<i>I am italic</i><hr>
<u>I am underline</u><hr>
<strong>I am strong.</strong>
<hr>
<p title="Paragraph">Hello how are you? I am paragraph.</p>
<pre>
=========
......free sentence....
=========
</pre>
<ol>
<li>Apples</li>
<li>Bananas</li>
<li>Pineapples</li>
<li>Pear</li>
</ol>
<ul type="square">
<li>Apples</li>
<li>Bananas</li>
<li>Pineapples</li>
<li>Pear</li>
</ul>
<hr>
<a href="https://google.com" target="_blank">Google</a>
<marquee><img src="avation.jpg" alt="Image no open" title="I am image" width="200px" height="200px"></marquee>
<center><img src="avation.jpg" alt="Image no open" title="I am image" width="200px" height="200px"></center>
<img src="avation.jpg" alt="Image no open" title="I am image" width="200px" height="200px">
<p>H<sub>2</sub>O =>Water</p>
<p>x*x = x<sup>2</sup></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment