HTML_Tags_for_Beginners_Coding_Club.pptx

tetevinathan 8 views 10 slides Oct 25, 2025
Slide 1
Slide 1 of 10
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10

About This Presentation

"Fundamentals of HTML: A Comprehensive Guide to the Building Blocks of Web Development"

HTML, or HyperText Markup Language, serves as the backbone of web pages, allowing developers to structure content effectively. This basic yet powerful language utilizes a series of elements and tags to...


Slide Content

HTML Tags for Beginners Coding Club Presentation

What is HTML? HTML stands for HyperText Markup Language. It is used to create and structure webpages. HTML uses 'tags' to tell browsers how to display content.

Structure of an HTML Document <!DOCTYPE html> <html> <head> <title>My First Page</title> </head> <body> <h1>Hello, World!</h1> </body> </html>

Basic Tags Overview <html> – The root element <head> – Contains page info <body> – Contains visible content <h1> to <h6> – Headings <p> – Paragraph <a> – Link

The <p> Tag Used to define a paragraph of text. Example: <p>This is a paragraph.</p>

The <a> Tag Used to create hyperlinks. Example: <a href='https://example.com'>Visit Example</a>

The <img> Tag Used to display images. Example: <img src='image.jpg' alt='Description'>

The <ul> and <ol> Tags <ul> – Unordered list (bullets) <ol> – Ordered list (numbers) Example: <ul><li>HTML</li><li>CSS</li></ul>

The <table> Tag Used to display data in rows and columns. Example: <table><tr><th>Name</th><th>Age</th></tr><tr><td>John</td><td>12</td></tr></table>

Summary HTML tags are the building blocks of a webpage. Learn them step by step and practice creating your own pages! Next: Learn about CSS for styling.