19.6k views
1 vote

In a proper webpage, which tag holds all of a webpages visible HTML?



Html

Head

Body

Link

Script

doctype



User Tas
by
7.3k points

1 Answer

5 votes

The general structure is:

<html>

<head>

</head>

<body>

... here goes the content ...

</body>

</html>

So the page content is in the <body> tag.

User Charles Holbrow
by
7.7k points