OneCompiler

Assignment 1.1 Headings

122
<!DOCTYPE html>
<html>
  <head>
    <title> 1.1 HTML: Headings</title>
  </head>
  <body>
    <!-- Part A: Use Headings -->

    <!-- This is the h1 heading -->
    <h1> h1 heading - Most important and biggest heading! </h1>
    
    <!-- Add the h2 heading below this line -->
    
    <!-- Add the h3 heading below this line -->
    
    <!-- Add the h4 heading below this line -->
    
    <!-- Add the h5 heading below this line -->
    
    <!-- This is the h6 heading -->
    <h6> h6 heading - Least important and smallest heading! </h6>
    
    <!-- Part B: Apply Headings  -->
    
    <!-- Make this the Most Important Heading -->
    Hello! This is My Super Awesome Website!
   
    <!-- Make this the Second Most Important Heading -->
    About me:
   
    <!-- Make this the Least Important Heading -->
    Made by HTMLCoder123
  </body>

<!-- 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.1.js"></script>
</html>