You are on page 1of 1

WEB DEVELOPING

<html> [our html code inside opening and closing tag]


<h1> to <h6> different headings
<body> [ The body of our code lies between opening and closing body tag ]
<br> [used as a line break (to the next line )]
<hr> horizontal rule [used to draw a horizontal line ]
<strong><same but better than bold <b> .
<em> same but better than italic <i> .
<i><b> [ italic and bold our text ]
<p> [paragraph is written in b/w <p> and </p> tag ]
<ul> [unordered list] (a bullet list )
<li> [list items]
<ol> [ Ordered lists ] ( an ordered bullet list )
<img src=�� alt�text�> [used to add image to our website]
Eg: <img src=�azad.png� alt=�My Photo�>
<a href> [ a tag with a shyper link reference to the destination]
Eg: <a download href=�https://...� >download here </a> [used to download something
from a link.]
a stands for anchor tag.
href : contains a url or a url fragment that the hypertext points to.

Eg: <a href=�https://...�>Hello</a>

<table>[ used to add a table data in our website] </table>


Inside a table we can add a table row and table data (table cells)
tr [table row] </tr>
td [table data(data in the table cells)] </tds>

You might also like