<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First HTML Page</title>
</head>
<body>
<h1>Hello, HTML!</h1>
<p>This is a simple webpage.</p>
</body>
</html>
<!DOCTYPE html>
: Declares the document type.
<html>
:
Root element of the page.<head>
:
Metadata about the page (not visible to users).<body>
:
Content displayed on the page.<h1>Main Heading</h1>
<h2>Subheading</h2>
<p>This is a paragraph of text.</p>
<p>You can add <strong>bold</strong> or <em>italic</em> text.</p>
<h1>
(largest) to <h6>
(smallest).<p>
: Paragraphs.<strong>
: Bold
text.<em>
: Italics.<a href="https://www.google.com" target="_blank">Visit Google</a>
<img src="image.jpg" alt="A descriptive text about the image" width="300">
<a>
: Anchor tag for links.
target="_blank"
opens in a new tab.
<img>
: Embeds images.
Always include alt
for accessibility.<h3>Unordered List:</h3>
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
</ul>
<h3>Ordered List:</h3>
<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>Step 3</li>
</ol>
<ul>
: Unordered list
(bullets).<ol>
: Ordered list
(numbers).<li>
: List item.<table border="1">
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Alice</td>
<td>25</td>
</tr>
<tr>
<td>Bob</td>
<td>30</td>
</tr>
</tbody>
</table>
<table>
: The
table container.<tr>
: Table row.
<td>
: Table cell.
<th>
: Header
cell.<form action="/submit" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="age">Age:</label>
<input type="number" id="age" name="age">
<button type="submit">Submit</button>
</form>
<form>
: Wraps input
fields and buttons.<input>
: Text, numbers,
passwords, etc.<button>
: Submits the
form.<div style="background-color: lightgray; padding: 10px;">
<h2>Div Example</h2>
<p>This is a block-level container.</p>
</div>
<span style="color: red;">This is inline text.</span>
<div>
: Block-level
container for grouping content.<span>
: Inline container
for small elements.<audio controls>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<video controls width="500">
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<audio>
and
<video>
embed media players.
<source>
to provide
multiple formats for compatibility.<header>
<h1>Website Title</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
</nav>
<main>
<section id="home">
<h2>Welcome</h2>
<p>This is the home section.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>Information about our website.</p>
</section>
</main>
<footer>
<p>© 2024 My Website</p>
</footer>
<header>
, <nav>
, <main>
,
<section>
, and <footer>
improve structure and accessibility.
<p style="color: blue; font-size: 18px;">This text is styled inline.</p>
<!-- Link to external stylesheet -->
<link rel="stylesheet" href="styles.css">
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
<script>
document.addEventListener("DOMContentLoaded", function () {
console.log("Page loaded!");
});
</script>
<!-- Link to external JavaScript -->
<script src="script.js"></script>
// script.js
console.log("Hello from external JavaScript!");
<meta name="description" content="Learn HTML quickly!">
<meta name="author" content="John Doe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<style>
@media (max-width: 600px) {
body {
background-color: lightblue;
}
}
</style>
<head>
Section<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A complete guide to HTML.">
<meta name="author" content="John Doe">
<meta name="keywords" content="HTML, Web Development, Guide">
<title>Advanced HTML Concepts</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<meta charset="UTF-8">
: Ensures proper encoding for
characters.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
:
Makes websites responsive.
<link rel="icon">
): Adds a small icon for browser tabs.<form action="/submit" method="POST" enctype="multipart/form-data">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required minlength="5" maxlength="15">
<label for="file">Upload a File:</label>
<input type="file" id="file" name="file" accept=".jpg, .png, .gif">
<button type="submit">Submit</button>
</form>
Validation Attributes:
required
: Makes a field
mandatory.minlength
and
maxlength
: Limits text input length.
accept
: Specifies
acceptable file types.Enctype:
multipart/form-data
:
Required for file uploads.<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
<th colspan="2">Contact Information</th>
</tr>
<tr>
<td>John</td>
<td>30</td>
<td>[email protected]</td>
<td>+123456789</td>
</tr>
<tr>
<td rowspan="2">Alice</td>
<td>25</td>
<td colspan="2">[email protected]</td>
</tr>
</table>
colspan
: Spans
columns.rowspan
: Spans
rows.<audio controls loop>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio tag.
</audio>
<video controls autoplay muted>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Audio Attributes:
loop
: Replays the
audio.controls
: Displays
playback controls.Video Attributes:
autoplay
: Plays
automatically.muted
: Starts the video
with sound muted.<article>
<header>
<h2>Article Title</h2>
<p>Published on <time datetime="2024-12-12">December 12, 2024</time></p>
</header>
<p>This is the content of the article.</p>
<footer>
<p>Written by John Doe</p>
</footer>
</article>
<article>
: Independent content like a blog post.
<time>
:
Machine-readable dates.<footer>
: Footer of a section or document.
<iframe>
Tag<iframe src="https://www.example.com" width="600" height="400" frameborder="0"></iframe>
src
: URL of the
embedded content.frameborder
: Border
visibility (deprecated; use CSS instead).sandbox
: Restricts
iframe functionality for security.<p><This is a tag></p>
<p>© 2024 My Company</p>
<p>☃ (Snowflake symbol)</p>
<
→
<
>
→
>
&
→
&
©
→
©
☃
.
<canvas>
Tag<canvas id="myCanvas" width="400" height="400"></canvas>
<script>
const canvas = document.getElementById('myCanvas');
const ctx = canvas.getContext('2d');
ctx.fillStyle = 'blue';
ctx.fillRect(50, 50, 100, 100); // Draws a blue rectangle
</script>
<canvas>
tag is used
for graphics, animations, and games.<button aria-label="Submit form">Submit</button>
<div role="alert">
This is an important alert message!
</div>
aria-label
:
Describes the purpose of an element for screen readers.role
: Defines
the role of an element (e.g., alert
, button
, navigation
).<a href="/download" id="download-link">Download File</a>
<script>
document.getElementById('download-link').addEventListener('click', function (e) {
e.preventDefault();
alert('File will download in a moment.');
});
</script>
<details>
and
<summary>
Tags<details>
<summary>Click to reveal more information</summary>
<p>This is the hidden content that appears when you click.</p>
</details>
data-
Attributes<button data-id="1234" onclick="handleClick(this)">Click Me</button>
<script>
function handleClick(button) {
console.log(button.dataset.id); // Logs "1234"
}
</script>
data-*
Attributes allow custom attributes to store metadata.<article>
over <div>
when applicable.
alt
for images.
aria-*
for
assistive technologies.