HTML – Basic

THE HTML DOCUMENT

all html documents have to begin with the declaring your document type you do this by writing this : <! DOCTYPE html >

after declaring it, the html will begin once you type <html> and don’t forget it’s end tag as well !!! </html>

remember that the visible part of the html document will be between the <body> tags </body>

HTML Headings : So you want to create headings let’s see how !

Every single heading must have <h#> !!!!

that was easy right ?!!

okay! but what if I want to write a paragraph in my web how do I do this ?

Don’t worry it’s just as easy . we just write the appropriate tag in this case is the <p> write your paragraph in here </p> .

OUTPUT WILL BE :

Links ! I want to show off link to my favorite music as well !!

HTML links are defined with the <a> tag:

Citations : https://www.w3schools.com/html/html_basic.asp , http://www.simplehtmlguide.com/basics.php , https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics

Leave a comment