Tecpins

You are welcome to Tecpins, it is free tutorials for people who want to learn about Html Tutorial,Android Tutorials,PHP Tutorials,Java Tutorials and Css Tutorials.

Post Top Ad

ads
Responsive Ads Here

HTML Introduction

What is HTML?

HTML is the standard markup language for creating Web pages.
  • HTML stands for Hyper Text Markup Language, It's describes the structure of Web pages using markup.

Example Explained

  • The <!DOCTYPE html> declaration defines this document to be HTML5,
  • The <html> element is the root element of an HTML page,
  • The <head> element contains meta information about the document,
  • The <title> element specifies a title for the document,
  • The <body> element contains the visible page content,
  • The <h1> element defines a large heading,
  • The <p> element defines a paragraph,

 

HTML Page Structure