Posts

Showing posts with the label paragraphs

Some Basic HTML Examples

Some HTML Basic Examples HTML Basic Examples Don't worry, if you are not familiar with these tags. You will be learning them in the next upcoming chapters. HTML Documents Each and every HTML document must have to start with a document type declaration &colon; <!DOCTYPE html> . The HTML document itself begins with <html> and ends with </html> The visible part of the HTML document is always between <body> and </body> tag. <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> HTML Headings HTML headings are defined according to the importance of the headings with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading &colon; Example ...