Hi guys welcome back in 2nd Blog of HTML of Web Development Series.
In previous HTML blog you’ll learn Basic of HTML and in this blog you’ll learn Basic HTML Tags with their usage.
So, lets get started
Basic Tags
<head> | Contains info of the document |
<body> | Defines body of the document |
<h1> from <h6> | For headings |
<p> | For paragraph |
<br> | For line break |
<b> | Bold text |
<i> | Italic text |
<small> | For smaller text |
<strong> | Same as <b> tag |
<u> | Underlined text |
<!–…–> | For adding comments in code |
Table Tags
<table> | Defines a table structure |
<th> | Table cell header |
<tr> | For adding column in a table |
<td> | For adding row in a table |
<colspan> | To merge table columns |
<rowspan> | To merge table rows |
<caption> | For writting table caption |
Form Tags
<form> | For creating HTML Form |
<textarea> | For adding multiline text area |
<button> | Clickable button |
<select> | For adding drop-down list |
<option> | For adding options in drop-down list |
List Tags
<ol> | For Ordered list |
<ul> | For Unorderd list |
<li> | For list item |
<dl> | Description list |
Image Tags
<img> | For adding image |
<map> | For client-side image map |
<picture> | For multiple image resources |
<svg> | Container for SVG graphics |
Link Tags
<a> | For adding links |
<nav> | For navigation links |
Video/Audio Tags
<audio> | For adding audio file |
<video> | For addiing video file |

We Hope this is useful for you guys.
Thanks for reading 
Comments
Post a Comment