# HTML Basics for Beginners – Markup Language, Elements and Types of CSS

> Source: <https://dev.to/ezhil_abinayak_e38eec8fb/html-basics-for-beginners-markup-language-elements-and-types-of-css-6pd>
> Published: 2026-05-22 15:25:38+00:00

Introduction
In this blog, I will share some basic HTML and CSS concepts that every beginner should know. These are important interview questions for frontend development.
What is Markup Language?
Markup language is used to describe the structure of content using tags and symbols.
Example:
HTML is a markup language used to create web pages.
Tags like
, and
help the browser understand how to display content.Hello
This complete structure is called an HTML element.
Difference Between Tag and Element
Tag:
• Only the keyword inside angle brackets
Example:
or
Element:
• Complete structure including opening tag, content, and closing tag
Example:
Hello
Types of CSS
There are 3 types of CSS:
Hello
