Home  • Programming • HTML5

Get Started with HTML?

HTML is a markup language for describing web documents (web pages). pic HTML stands for Hyper Text Markup Language A markup language is a set of markup tags HTML documents are described by HTML tags Each HTML tag describes different document content c to advanced.

Basic Tag

The DOCTYPE declaration defines the document type to be HTML The text between <html> and </html> describes an HTML document The text between <head> and </head> provides information about the document The text between <title> and </title> provides a title for the document The text between <body> and </body> describes the visible page content The text between <h1> and </h1> describes a heading The text between <p> and </p> describes paragraph

HTML Page Structure

pic

Write this Code

<!DOCTYPE html> <html> <body> <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> </body> </html>

Comments 0


Share

About Author
Arif  Mainuddin
Copyright © 2024. Powered by Intellect Software Ltd