Back

IT-WST01

Laboratory 9

EasyLaboratory1 file
0 visits

score: 100/100

directions

  • Create a new HTML file and save it as Laboratory9.html.
  • The title should be Laboratory 9.
  • Create a <h1> heading that will display.
  • Chapter Definitions.
  • The heading should be centered on the screen and should be colored “MediumSeaGreen”.
  • All description terms should be colored “Tomato”.
  • Using description lists, create a web page that will display the output same as the attached file.
  • Upload the screenshots of (a) source code and (b) output.

code

<!DOCTYPE html>
<html>
  <head>
    <title>Laboratory 9</title>
  </head>
  <body>
    <h1 style="text-align: center; color: MediumSeaGreen;">Chapter Definitions</h1>
    <dl>
      <dt style="color: tomato;">Unordered List</dt>
      <dd>- also called a bulleted list</dd>
      <dd>- a list of items, normally preceded by a circular bullet that appear in no particular order</dd>
      <dt style="color: tomato;">Ordered List</dt>
      <dd>- also called a numbered list</dd>
      <dd>- a list of items that appear in alphabetical or numerical order</dd>
      <dt style="color: tomato;">Description List</dt>
      <dd>- a list of terms and their meanings</dd>
    </dl>
  </body>
</html>

output

Laboratory 9