Editing HTML
HTML can be written and edited using many different edition like Dreamweaver and Visual Studio.However,in this tutorial we use a plain text editor (like notepad) to edit HTML. We believe using a plain text editor is the best way to lean HTML.
HTML Basic
HTML headings
HTML heading are defined with the <h1> to <h6> tags.
Note:- It means in HTML web page you can make a heading like <h1>heading</h1> similar with <h2>,<h3>, <h4>,<h5>,<h6>.
HTML Paragraphs
HTML paragraphs are defined with the <p> tag.
HTML Links
HTML links are defined with the <a> tag.
Note:-The link address is specified in the href attribute.
HTML Image
HTML images are defined with the <img> tag.
<Previous
HTML can be written and edited using many different edition like Dreamweaver and Visual Studio.However,in this tutorial we use a plain text editor (like notepad) to edit HTML. We believe using a plain text editor is the best way to lean HTML.
HTML Basic
HTML headings
HTML heading are defined with the <h1> to <h6> tags.
Note:- It means in HTML web page you can make a heading like <h1>heading</h1> similar with <h2>,<h3>, <h4>,<h5>,<h6>.
HTML Paragraphs
HTML paragraphs are defined with the <p> tag.
HTML Links
HTML links are defined with the <a> tag.
Note:-The link address is specified in the href attribute.
HTML Image
HTML images are defined with the <img> tag.
<Previous
<Next