Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created June 22, 2023 00:20
Show Gist options
  • Save SitesByYogi/f94620f631c3f00553304979b6a3a0dc to your computer and use it in GitHub Desktop.
Save SitesByYogi/f94620f631c3f00553304979b6a3a0dc to your computer and use it in GitHub Desktop.
An HTML document consists of several elements that define the structure and content of a web page. Here's a basic structure for an HTML document:
<!DOCTYPE html>
<html>
<head>
<title>Your Title</title>
</head>
<body>
<!-- Your content goes here -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment