Which HTML tag belongs in the blank in the code?
<html>
<head>
<title>List</title>
</head>
<body>
<ol type=1>
<li>Line 1</li>
<li>Line 2</li>
<li>Line 3</li>
</body>
</html>
1 answer
The `<ol>` tag belongs in the blank.
<html>
<head>
<title>List</title>
</head>
<body>
<ol type=1>
<li>Line 1</li>
<li>Line 2</li>
<li>Line 3</li>
</body>
</html>
1 answer