Wednesday, May 15, 2019

HTML

Hyper Text Markup Language
(HTML)


What is HTML?
HTML (Hyper Text Markup Language) is a text-based approach to describing how content contained within an HTML file is structured. This markup tells a web browser how to display the text, images and other forms of multimedia on a web page.


HTML Tags Example Explained

  1. The <!DOCTYPE html> declaration defines this document to be HTML5
  2. The <html> element is the root element of an HTML page
  3.  The lang attribute defines the language of the document
  4. The <meta> element contains meta information about the document
  5.  The charset attribure defines the character set used in the document
  6. The <title> element specifies a title for the document
  7. The <body> element contains the visible page content
  8. The <h1> element defines a large heading
  9. The <p> element defines a paragraph   
HTML Formatting Elements  
  • <b>- Bold text
  • <strong>- Important text
  • <i>- Italic text
  • <em>- Exphasized text
  • <mark>- Marked text
  • <small>- Small text
  • <del>- Deleted text
  • <ins>- Inserted text
  • <sub>- Subscript text
  • <sup>- Superscript text




No comments:

Post a Comment

Express

What is Express? Express is a minimal and flexible Node.js web application framework that provides a robust set of features to develo...