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

HTML Advanced Presentation

Uploaded by

princebj2006
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)
2 views2 pages

HTML Advanced Presentation

Uploaded by

princebj2006
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

HTML Complete Presentation with Codes

Definition of HTML

HTML (HyperText Markup Language) is used to create and structure webpages using tags and
elements.

Basic HTML Structure

<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first webpage</p>
</body>
</html>

Common HTML Tags

Some commonly used HTML tags:


<h1>Heading</h1>
<p>Paragraph</p>
<a href="[Link]
<img src="[Link]" alt="image">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

HTML Attributes

Attributes provide extra information to elements.


<a href="[Link] Google</a>
<img src="[Link]" alt="My Image">

HTML Forms Example

<form>
Name: <input type="text"><br>
Password: <input type="password"><br>
<input type="submit">
</form>

HTML5 Example

<video controls>
<source src="movie.mp4" type="video/mp4">
</video>

<audio controls>
<source src="sound.mp3" type="audio/mpeg">
</audio>

Advantages

Easy, free, supported by all browsers.

You might also like