OneCompiler

Assignment 1.3: Basic HTML Structure

126
<!DOCTYPE html>

<!-- PART A: Practice using the closing tags  -->

<html> <!-- This is an opening tag for HTML! -->
    <head> 
        <title> 
        <!-- Write the closing tag for title in between the brackets on line 9 -->
        <>
    </head> <!-- This is a closing tag for head! -->
    <body>
    <!-- Write a closing tag for body in between the brackets on line 13 -->
    <>
<!-- Write a closing tag for html in between the brackets on line 15 -->
<>


<!-- PART B: Practice Nesting -->

<!-- First code segment -->
<>
    <> ... </head>
</html>

<!-- Second code segment -->
<>
    <body> ... <>
</html>

<!-- Third code segment -->
<html>
    <>
        <title> ... <>
    </head>
<>

<!-- PART C: Practice Correct Indenting. -->

<html>                 <!-- Correct -->
	<head>             <!-- Correct -->
		<title>        <!-- Correct -->
        </title>       <!-- Correct -->
</head>             
    <body>             <!-- Correct -->
            </body> 
        </html>     


<!-- Do not remove following lines. They're used to test. -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://sites.webjam.org/grader/assignment1.3.js"></script>```