TimesCoding

Learn, Practice, and Excel with our Coding Tutorials!

HTML Basic Structure Template 2022

June 4, 2022 1 Min read HTML
html basic structure

The HTML or HyperText Markup Language is the standard markup language to design web pages to display information in a web browser. The below section will introduce the basic structure of the HTML template. The template has the basic structure that every document should be followed.

<!DOCTYPE html>
<html>
<title>This is Title</title>
<body>

<h1>This is First Heading</h1>

<p>This is first paragraph.</p>

</body>
</html>
Related Post:
What are HTML Meta Tags? − HTML meta tags are used to provide additional information about a web page to search engines and browsers. They are placed within the <head> section.
What is HTML Page Title? − The HTML page title is one of the most important elements of a web page, as it is used to identify the content of a.
What are HTML Tags, Attributes, and Elements − HTML (Hypertext Markup Language) is a language used to describe the structure and content of web pages. It consists of: Some common HTML tags include: