HTML Basic Structure Template 2022
June 4, 2022 ⚊ 1 Min read ⚊ HTML
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>
Tags:
Basic HTML
HTML