Beginner Guide: HTML

Beginner Guide: HTML

Easy to Understand Concepts

In this article, I will share what I have learned in the given time period.

HTML stands for Hyper Text Markup Language.

Concepts important to learn in HTML :

  1. HTML Tag: HTML tags are like keywords define that how a web browser will format and display the content. With the help of tags, a web browser can distinguish between HTML content and simple content. HTML tags contain three main parts: an opening tag, a content, and a closing tag. But some HTML tags are self-closing tags.

    For example: (<h1></h1>) h1 tag.

  2. Attributes: HTML attributes are special words that provide additional information about the elements or attributes that are the modifier of the HTML element. Each element or tag can have attributes, which define the behavior of that element. Attributes should always be applied with a start tag. The Attribute should always be applied with its name and value pair.

    For example src attribute is used in img tag.

  3. Entities: HTML Entities are used to print reserved keywords. If you use the less than (<) or greater than (>) signs in your text, the browser might mix them with tags. To display a greater than sign (<) we must write: >

    A commonly used entity in HTML is the non-breaking space: &nbsp.

and That's It for Today! If you have any suggestions or found a mistake in the article feel free to comment on it out.

Thank you, Folks!