102k views
1 vote
You are writing code that you want to validate to the HTML5 standard. Which code can be used to ensure that a line of content will appear in the browser as standard body text?

User Saddam
by
7.5k points

1 Answer

3 votes

Answer:

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

Step-by-step 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.

User Hgrey
by
7.6k points