0% found this document useful (0 votes)
2 views1 page

HTML Guide

The document is a beginner's guide to HTML, explaining its purpose in structuring web pages. It includes basic structure examples, important tags, and how to create lists and forms. Key HTML elements such as headings, paragraphs, links, images, and forms are highlighted.

Uploaded by

alibassi1994
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 views1 page

HTML Guide

The document is a beginner's guide to HTML, explaining its purpose in structuring web pages. It includes basic structure examples, important tags, and how to create lists and forms. Key HTML elements such as headings, paragraphs, links, images, and forms are highlighted.

Uploaded by

alibassi1994
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 Beginner Guide

Introduction

HTML (HyperText Markup Language) is used to structure web pages.

Basic Structure
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>

Important Tags
<h1>, <p>, <a>, <img>, <table>, <form>, <div>, <span>

Lists
<ul>
<li>Item 1</li>
</ul>

Forms
<form>
<input type="text">
<button>Send</button>
</form>

You might also like