HTML (HyperText Markup Language) is the foundation of every web page. It provides the structure and content that browsers display.
HTML uses tags (keywords in angle brackets) to describe different parts of a page:
<h1> for headings<p> for paragraphs<a> for links<img> for images<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
// ...<!DOCTYPE html> tells the browser this is HTML5<head> contains metadata (title, styles, scripts)<body> contains the visible content<p>text</p>)In the code editor, create an HTML page with:
1. Proper <!DOCTYPE> and tags
2. A title in the <head>
3. An <h1> heading
4. At least two <p> paragraphs
HTML (HyperText Markup Language) is the foundation of every web page. It provides the structure and content that browsers display.
HTML uses tags (keywords in angle brackets) to describe different parts of a page:
<h1> for headings<p> for paragraphs<a> for links<img> for images<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
// ...<!DOCTYPE html> tells the browser this is HTML5<head> contains metadata (title, styles, scripts)<body> contains the visible content<p>text</p>)In the code editor, create an HTML page with:
1. Proper <!DOCTYPE> and tags
2. A title in the <head>
3. An <h1> heading
4. At least two <p> paragraphs