Learn Basic HTML Complete Course part 2

1 min read

Building blocks of HTML


An HTML document consist of its basic building blocks which are:

  • Tags: An HTML tag surrounds the content and apply meaning to it. It is written between < and > brackets.
  • Attribute: An attribute in HTML provides extra information about the element, and it is applied within the start tag. An HTML attribute contains two fields: name and value.

Syntax

<tag_name attribute_name="attr_value">content</tag_name>
  

Example

<!DOCTYPE html> 
<html> 
  <head> 
    <title>The basic building blocks of HTML</title> 
</head> 
  <body>
    <h2>The building blocks</h2> 
    <p>This is a paragraph tag</p> 
    <p style="color: red">The style is attribute of paragraph tag</p> 
    <span>The element contains tag, attribute and content</span> 
  </body> 
</html> 

 

output:

The building blocks

This is a paragraph tag

The style is attribute of paragraph tag

The element contains tag, attribute and content

One important thing In above example is,
<!DOCTYPE html>

The Purpose of <!DOCTYPE html>
🔹The very first line in every web document should contain a <!DOCTYPE html> declaration. Even though it's wrapped in angle brackets, it is not a tag but a statement.

🔹Doctype stands for Document Type Declaration. It informs the web browser about the type and version of HTML used in building the web document. This helps the browser to handle and load it properly.

The HTML5 word <!DOCTYPE html> means "this page is written in HTML5" as opposed to, say HTML 4.01.


Unlike earlier versions of HTML, in HTML5 the doctype declaration is case-insensitive.
In other words <!doctype html> works as well as <!DOCTYPE html>.

Hope you understand <!DOCTYPE html>😊


You may like these posts

  • In this article, I am going to share some of the best, free online courses to learn Web Development using HTML and CSS. If you are new to web development space then you can use the…
  •  HTML EntitiesHTML character entities are used as a replacement of reserved characters in HTML. You can also replace characters that are not present on your keyboard by entiti…
  • HTML Unordered List | HTML Bulleted ListHTML Unordered List or Bulleted List displays elements in bulleted (▫️) format . We can use unordered list where we do not need to…
  • HTML AnchorThe HTML anchor tag defines a hyperlink that links one page to another page. It can create hyperlink to other web page as well as files, location, or any URL. …
  • Building blocks of HTMLAn HTML document consist of its basic building blocks which are:Tags: An HTML tag surrounds the content and apply meaning to it. It is written between &…
  • HTML iframesHTML Iframe is used to display a nested webpage (a webpage within a webpage). The HTML <iframe> tag defines an inline frame.Iframe SyntaxAn HTML iframe is defined…

Post a Comment