0% found this document useful (0 votes)
5 views1 page

HTML Basics Explained

Uploaded by

sehan3061
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

HTML Basics Explained

Uploaded by

sehan3061
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

HTML Basics Explained

html basic in in small worlds

HTML (HyperText Markup Language) is the foundation of web development. It structures web content
using elements wrapped in tags. Basic concepts include:

1. Tags: `<tagname>` wraps content. Most tags have opening and closing (`</tagname>`), e.g.,
`<p>Hello</p>`.
2. Attributes: Provide extra information, e.g., `<img src="image.jpg" alt="Description">`.
3. Common Tags:
`<html>`: Root of the document.
`<head>`: Metadata like `<title>`.
`<body>`: Visible content.
`<h1>` to `<h6>`: Headings.
`<p>`: Paragraphs.
`<a>`: Links.
`<img>`: Images.
`<ul>`, `<ol>`, `<li>`: Lists.
`<div>`, `<span>`: Containers for styling.
4. Forms: Input elements for user data. Example: `<input>`, `<button>`.
5. Semantic Elements: Like `<header>`, `<footer>`, `<article>` for better readability.

HTML is easy to learn and crucial for web development!

Printed using Save ChatGPT as PDF, powered by PDFCrowd HTML to PDF API. 1/1

You might also like