Checkpoint 1

Q1. Finish the video tag that that points to /minecraft.mp4 and has controls and loops.

<
</video>

Q2. What is wrong with this code?

<html>
  <head>
    <title></title>
    <meta property="og:type" content="website" />
    <meta property="og:description" content="Unpopular opinion: pineapple is better on pizzas." />
    <meta name="theme-color" content="#FF0000" />
    <h1>Title</h1>
  </head>
  <body>
    <script src="/index.js" async type="text/javascript"></script>
  </body>
</html>

Q3. Which of the way cannot improve the following code?

<div>
  <h2>Home</h2>
  <div>
    <div>
      <h1>Navigate<h1>
    </div>
    <div>
      <p><a>About</a></p>
      <p><a>Home</a></p>
      <p><a>Shop</a></p>
    </div>
  </div>
  <div>Content</div>
</div>

 

Last edited on 01/04/2024