Skip to content

punitkatiyar/html-master-guide

Repository files navigation

HTML Master Guide

Hyper Text Markup Language ( extension : .html or .htm ) . it can contain the data in the form of Tag and Tag addition property can be added using Attribute.

🥇 HTML Structure

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>

HTML Tag or Element Defination

Elements are the building blocks of web pages. They define the structure and content of a webpage

<html>: Defines the beginning and end of an HTML document.
<head>: Contains meta information about the document, such as the title, links to stylesheets and scripts, and other metadata.
<body>: Contains the visible content of the webpage.
<h1> to <h6>: Headings that define the importance of a section of content.
<p>: Defines a paragraph of text.
<a>: Creates a hyperlink to another webpage or a location within the same page.
<img>: Displays an image on the webpage.
<ul> and <ol>: Creates an unordered or ordered list of items.
<li>: Defines a list item within an ordered or unordered list.
<div>: Defines a division or section of the webpage.
<span>: Defines a small section of text within a larger block of text.
<form>: Creates a form for user input.
<input>: Defines an input field for the user to enter data.
<button>: Creates a clickable button element.
<table>: Defines a table with rows and columns.
<tr>: Defines a row in a table.
<td>: Defines a cell in a table.

Home


  1. html structure
  2. html basic tag
  3. html article
  4. html text formeting
  5. html table
  6. html forms
  7. html list
  8. html map
  9. html iframe
  10. html Multimedia
  11. html canvas and svg
  12. html project

HTML Sample Code

  1. Login form template one
  2. Login form template Two
  3. Login form template Three
  4. web template
  5. template one
  6. template Two
  7. template Three
  8. Project

Back To Home Page
HTML Module 1 HTML Module 2 HTML Module 3
Module 1 Module 1 Module 1
> https://bgjar.com/

Releases

No releases published

Packages

No packages published

Languages