1.4k views
5 votes
What do type in?
What are the HR tags
What are the h3 headings

What do type in? What are the HR tags What are the h3 headings-example-1
User Jpnurmi
by
4.4k points

1 Answer

5 votes

Answer:

HR tags are horizontal breaks in a document.

Your code should look like this:

<html>

<head>

</head>

<body>

<h1>

first heading

</h1>

<h3>

other headings

</h3>

</body>

</html>

<style>

body {

background-color: #505693;

color: #FFFFFF;

}

hr {

background-color: #6A5ACD;

}

</style>

User James Harrington
by
4.2k points