
Code sharing page
My Latest Posts
First HTML Code


<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta http-equiv=”X-UA-Compatible” content=”IE=Edge”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title>HTML</title>
<!– HTML –>
<!– Custom Styles –>
<link rel=”stylesheet” href=”style.css”>
</head>
<body>
<!–Image tag–>
<img src=”#” alt=”” />
<!–To Line break use br tag–>
<br />
<!–To create horizontal Line use hr tag–>
<hr />
<!–HTML Comments–>
<!–Heading Tag–>
<H1>This is a heading tag</H1>
<h2>This is Heading2 tag</h2>
<h3>This is heading3 tag</h3>
<h4>This is heading4 tag</h4>
<h5>This is heading5 tag</h5>
<h6>This is heading6 tag</h6>
<!–Paragraph tag–>
<p>This is a paragraph tag</p>
<!–Anchor tag–>
<!– example of absolute link–>
<a href=”https://www.google.com” >Click here</a><br />
<a href=”https://www.youtube.com”>Click here to go to Youtube</a>
<!–example of relative link–>
<a href=”/about.html”>About Section</a>
<!–Preformatted text–>
<pre>
how to use pre tag
You can use like this
</pre>
<!–Bold <text–></text–>
<b>B tag use to bold a text</b> <br />
<!–Strong tag–>
<strong>This is a important and valuable tag</strong><br />
<!–Italic tag–>
<i>Using this tag to make a text in italic style</i><br />
<!–Emphasis text–>
<em>This is a em tag to explain text that it is emphasis </em><br />
<!– Small tag–>
<small>This is a small tag</small >
<br />
<!–mark tag–>
<mark>To mark a text use mark tag</mark>
<br />
<!–Delete tag–>
<del>To delete a text use del tag</del> <br />
<!–Insert tag–>
<ins>To underline a text use ins tag and Insert tag</ins><br />
<!– Subscript tag–>
<div>
h<sub>2</sub>o
</div>
<!–Superscript tag–>
<div>
x<sup>2</sup>+y<sup>2</sup>
</div>
<!–Quotation and citation–>
<q>It’s a quotation tag use quotation on a text use q tag</q><br />
<!–Blockquote tag–>
<blockquote cite=”htts://www.google.com”>
If we use any kind of text from another source we should use blockquote tag and for showing source use cite attribute
</blockquote>
<br />
<!–Abbr Tag–>
<abbr title=”World Health Organisation”>WHO</abbr><br />
<!–Address Tag–>
<address>
10/A,Dapunia
Mymensingh
Bangladesh
</address>
<br />
<!–Cite tag–>
<p><cite>The Lost Kid</cite> is writing by famous person….. </p> <br />
<!– Project –>
http://main.js
</body>
</html>