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

Basic HTML Structure Guide

This document is a basic HTML structure for a simple webpage. It includes a title and a welcome message in the body. The page is designed to be responsive with a viewport meta tag.

Uploaded by

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

Basic HTML Structure Guide

This document is a basic HTML structure for a simple webpage. It includes a title and a welcome message in the body. The page is designed to be responsive with a viewport meta tag.

Uploaded by

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

<!

-- A basic HTML structure -->

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Basic HTML</title>

</head>

<body>

<h1>Welcome to My Website!</h1>

<p>This is a simple HTML page.</p>

</body>

</html>

You might also like