Friday, September 11, 2015

HTML - Web leaning:
This blog would be for beginners like me to grab knowledge bout  and maybe quick reference in future

> HTML
> CGI
> Java Script

HTML:
Main  HTML sections:
1) Document
2) Headings
3) Paragraphs
4)Links
5)Images


1)  Document
Any HTML file begins with DOCTYPE, It means type of this document.
This <a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html">link has few listed down documet types.

example:
 <!DOCTYPE html>

2) Headings 
Next comes header and footer, everything should be included under
<html>
<body>
...

</html>
</body>

headings and sub-heading should come under below tags:

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

3) Paragraphs should under below tags:
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

4)  And to create a link use:
<a href="http://www.ligthendlesslight.com">This is a link</a>

5)  Image
<img src="flename.jpg" alt="flename.com" width="104" height="142">

No comments:

Post a Comment