Computer Science, asked by falke, 1 year ago

basic structure of HTML

Answers

Answered by Lamesoul
4
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Hope it helps you buddy..
Cheers
Answered by Deepika111111
7
<html>
<head>
<title>_______ </title>
</head>
<body>
.
.
.
.
.
.
</body>
</html>

This is the basic structure of a HTML page.
You can add all the other tags inside the body tag. Tags can be bgcolor, font face, size, color, and many more.
Tags can be both empty and container.
If you are using a container tag then never forget to close it.
Hope this helps!
Similar questions