Beginner Guide: HTML
Easy to Understand Concepts

Hey Reader! I'm a full-stack web developer geek who is only now beginning to blog. I have a passion for creating web apps from the ground up and enjoy learning about all the many technologies used in the process.
You can read a variety of lessons, observations, and thoughts on my Hashnode blog as I make my way through the world of full-stack web development. I'll be sharing everything I learn along the road, from introductory lessons for beginners to more complex subjects, as well as some of the difficulties I encounter and how I get beyond them.
Follow me as I learn how to build a full-stack website, one or two blog post per week! Together, let's build some amazing web applications while learning.
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 :
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.
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.
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:  .
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!




