0% found this document useful (0 votes)
5 views2 pages

HTML5_Learning_Guide

The HTML5 Learning Guide covers essential HTML syntax, including tags, elements, and attributes. It outlines the structure of a webpage, text formatting, hyperlinks, lists, multimedia embedding, tables, forms, and semantic elements. This guide serves as a comprehensive introduction to creating and structuring HTML5 documents.

Uploaded by

durgasaimukesh
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 views2 pages

HTML5_Learning_Guide

The HTML5 Learning Guide covers essential HTML syntax, including tags, elements, and attributes. It outlines the structure of a webpage, text formatting, hyperlinks, lists, multimedia embedding, tables, forms, and semantic elements. This guide serves as a comprehensive introduction to creating and structuring HTML5 documents.

Uploaded by

durgasaimukesh
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/ 2

HTML5 Learning Guide

HTML Syntax

Tags: Keywords like <p>, <div>. Often in pairs: <p>...</p>.

Elements: Tag with content, e.g., <p>Hello</p>.

Attributes: Info within tags. E.g., <a href='url'>Link</a>.

Page Structure

<!DOCTYPE html>: Declares HTML5

<html>: Root

<head>: Metadata

<body>: Visible content

Text Formatting

Headings: <h1> to <h6>

Paragraphs: <p>...</p>

Span: Inline for styling text.

Hyperlinks & Anchors

<a href='url'>Link</a>

Use #id for same-page jumps, target='_blank' for new tab.

Lists

Ordered: <ol><li>Item</li></ol>

Unordered: <ul><li>Item</li></ul>

Multimedia Embedding

Images: <img src='...' alt='...'>

Audio: <audio controls><source src='...'></audio>


HTML5 Learning Guide

Video: <video controls><source src='...'></video>

Tables

<table><tr><th>Header</th></tr><tr><td>Data</td></tr></table>

Forms and Inputs

<form><input type='text'>, <input type='submit'></form>

Types: text, email, radio, etc.

Semantic Elements

<header>: Top

<footer>: Bottom

<nav>: Navigation

<section>: Grouping

<article>: Self-contained

You might also like