HTML stands for hyper text markup language.It is mainly used to creat a web pages.HTML documents are described by HTML tags.A mark up language is set up of markup tags.The file extension of HTML file is .html or .htm.It is developed by W3C & WHATWG. The initial realese of html is 1993.
What is needed?
What is needed?
- A web browser.It may be Microsoft internet explorer,Mozzila firefox,Google Chrome.
- If you are using windows operating system.You can use notepad or notepad++.For mac TEXTEDIT or For Linux you can use Pico
A small HTML document:
<!doctype html>
<html>
<head>
<titel>pages titel</titel>
</head>
<body>
<h1>My first Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Example Explained
- · All HTML documents must start with a type declaration: <!DOCTYPE html>.
- · The HTML document itself begins with <html> and ends with </html>.
- · The visible part of the HTML document is between <body> and </body>.HTML DocumentsAll HTML documents must start with <!doctype>The html itself begins with <html> and ends with </html>The visible part of HTML document is between <body> and </body>
EXAMPLE
<html>
<body>
<h1>It is my first heading</h1>
<p>It is my first paragraph</p>
</body>
</html>
HTML Headings
HTML headings are defined with the <h1> to <h6> tags:
HTML Paragraph
HTML paragraph are defined with the <p1> to <p6> tags:
HTML links are defined with the <a> tag;
EXAMPLE:-
<a herf="http//:www.rexour.blogpost.in">This is a link</a>
HTML Images
HTML images are defined as <img> tag.
The source file(src),Alternative text(alt),and size (width and hight) are provided as attributes:
EXAMPLE:-
<img scr="rexour.jpg" alt="rexour.blogpost.in" width= "104" height="142">
<img scr="rexour.jpg" alt="rexour.blogpost.in" width= "104" height="142">
Post a Comment
0 comments
Dear readers, after reading the Content please ask for advice and to provide constructive feedback Please Write Relevant Comment with Polite Language.Your comments inspired me to continue blogging. Your opinion much more valuable to me. Thank you.