Respuesta :

Answer:

<body> This part will appear in the browser </body>.

Explanation:

<!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>

This part will appear in the browser

</body>

<html>

This is a code for HTML5 web page <!DOCTYPE html> defines that the page is of HTML5.

The text written in the body element will appear in the browser as a standard body text.

<body> = start tag.

</body>= end tag.