HTML

Introduction of HTML

HyperText Markup Language (HTML) is a basic language for the frontend design of the web. It is made with elements. It defines the basic structure of the web. HTML is the skeleton of the web. 

It defines the basic structure of the web content, it tells how is design for the web. HTML defines the appearance of the web in combination with Cascade Stylesheet (CSS) functionality with combination with Javascript

HyperText Markup Language uses "markup" to demonstrate text, images for display in a browser. It includes major elements like <head>, <title>, <body>, <header>, <footer>, <article>, <section>, <p>, <div>, <span>, <img>, <aside>, <audio>, <canvas>, <b>,<i>, <embed>, <nav>, <output>,, <video>, <ul>, <ol>, <li> and other different elements.

Example 

<!DOCTYPE html>
<html>

<head>
  <title>Page Title</title>
</head>

<body>
  <header>
    <nav>
      This is nav
    </nav>
  </header>

  <section>
    <div>
      <h1>First Heading</h1>
      <p>First paragraph.</p>
    </div>
  </section>
  <footer>
    This is footer
  </footer>
</body>

</html>




Reactions

Post a Comment

0 Comments