Today I started learning HTML from W3schools HTML tutorial (about 1 hour ago
Then I decided to share what I learned with ROBOT.LK
Code: Select all
<html></html>                 Defines the HTML document 
<body></body>                Where the web site content put in
<h1></h1>                       Heading 1 (Means the most important heading of the document) There are heading tags that goes until h6
<h6></h6>                       Heading 6 (The least important heading)
<p></p>                          Paragraph tag. We all know what a paragraph is :)
<br/>                              Line break that uses to separate paragraphs' or any others' lines
<hr/>                              This adds a Horizontal Line 
<a href="http://www.expertore.org"> The site I like the most </a>     In HTML we need to use this to add links
<img src="https://robot.lk/styles/prosilver/imageset/ROBOT.LK-logo3.png" height="150" width="130">      We use this tag to add images to our web page
<!-- HTML Comments-->     We use this tag to make HTML comments.
That's all for now. As I learn, I will be adding more



