11.0k views
1 vote
A web page document is contained between opening and closing ________tags.

1 Answer

5 votes
Every web page is contained between an opening an closing <html> tag (the closing tag being </html>).


The simplest web page you could make would look something like this:


<html>
<head>
<title>My Page Title</title>
</head>

<body>
This is the content of my web page!
</body>
<html>
User Spenser
by
5.7k points