Introduction to HTML
HTML (Hypertext Markup Language) is the standard language for creating web pages. It structures content, defines headings, paragraphs, links, and images. Think of it as the blueprint for building websites.
. Static websites mean it mix of HTML, CSS
. Responsive website ---> Bootstrap.
. Dynamic website ----> JS ES9, React JS.
* HTML syntax introduction-
1. Main heading - h1 element.
2.paragraph - p element.
Adding Heading in HTML- h1, h2....
syntax - <tag> content (any text) </tag>
<h1> hello </tag>
. Adding Paragraph in HTML-
Syntax - <tag> content (any text) </tag>
<p> plan your career </p>
Syntax - <tag> content (any text) </tag>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello</h1>
<p>Plan your career.</p>
<button>Click here</button>
</body>
</html>