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

Learn HTML Basics for Web Development

Uploaded by

umair.jatt00112
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Learn HTML Basics for Web Development

Uploaded by

umair.jatt00112
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<html>

<head>
<title>My Simple HTML Page</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<h2>About HTML</h2>
<p>HTML stands for HyperText Markup Language.</p>
<p>It is the standard language used to create webpages.</p>
<p>HTML uses tags to structure text, images, and other content.</p>
<p>Learning HTML is the first step in web development.</p>
<p>Thanks for checking out this page!</p>
</body>
</html>

You might also like