Introduction_to_HTML_Summary.pptx tutorial

polymaththesolver 10 views 5 slides Oct 05, 2024
Slide 1
Slide 1 of 5
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5

About This Presentation

Introduction to html


Slide Content

Introduction to HTML A Brief Overview of the Basics

What is HTML? • HTML stands for HyperText Markup Language • It is the standard language for creating webpages • HTML describes the structure of a web page • Elements are represented by tags (e.g., <html>, <body>)

Basic Structure of an HTML Document <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> • <!DOCTYPE html>: Declares the document type • <html>: The root element of the HTML page • <head>: Contains metadata and the page title • <body>: Contains the content of the webpage </body> </html>

Common HTML Tags • <h1> to <h6>: Headings • <p>: Paragraph • <a>: Anchor (Hyperlink) • <img>: Image • <ul>, <ol>, <li>: Lists (Unordered, Ordered, List Items)

Creating Your First HTML Page • Write a simple HTML document using the structure introduced • Save the file with a .html extension (e.g., index.html) • Open the file in any web browser to view your webpage • Example: <html> <body> <p>Hello, World!</p> </body> </html>
Tags