HTML (HyperText Markup Language) is the standard language used to create and design webpages. It structures web content using tags and elements
β Markup Language β It structures content using tags .
β Not a Programming Language β It doesnβt have logic like JavaScript; it just organizes content.
β Works with CSS & JavaScript β CSS styles the page, and JavaScript makes it interactive.
β Platform-Independent β Works on all browsers and devices.
An HTML tag is a piece of code used to define the structure and content of a webpage in HyperText Markup Language (HTML). Tags are enclosed in angle brackets (<>) and usually come in pairs:
An opening tag (e.g., < p >)
A closing tag (e.g., < /p >)
Elements are the building blocks of web pages. They define the structure and content of a webpage
An opening tag
The content inside the tag (if applicable)
A closing tag (if required)
<!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>tech unit book</title>
</head>
<body>
</body>
</html>
HTML Module 1 | HTML Module 2 | HTML Module 3 |
Module 1 | Module 1 | Module 1 |
> https://bgjar.com/