Back

IT-WST01

Laboratory 7

EasyLaboratory1 file
0 visits

score: 100/100

directions

  • Open Laboratory1.html.
  • Save the contents to a new file named Laboratory7.html.
  • Change the title to Laboratory 7.
  • Change the background color of the whole web page to “PapayaWhip”.
  • Set the color of the header to “FireBrick”.
  • Set the alignment of the header to “center”.
  • Set the alignment of the paragraphs to “justify”.
  • Set the font size of the paragraphs to “20px”.
  • Set the indentation of the paragraphs to “2em”.
  • Upload the screenshots of (a) source code and (b) output.

code

<!DOCTYPE html>
<html>
  <head>
    <title>Laboratory 7</title>
  </head>
  <body style="background-color: PapayaWhip;">
    <hr />
    <h1 style="color: firebrick; text-align: center;">Internet and the World Wide Web</h1>
    <p style="text-align: justify; font-size: 20px; text-indent: 2em;">Many people use the terms <b>Internet</b> and the <b>World Wide Web</b> interchangeably, but in fact, the two terms are not synonymous. The internet and the Web are two separated but related things.</p>
    <p style="text-align: justify; font-size: 20px; text-indent: 2em;">The <b>Internet</b> is massive network of networks, a networking infrastracture. It connects millions of computers together globally, forming a network in which any computer can communicate with other computers as long as they are both connected to the internet. Information can travel via the internet via a variety of languages called <i>"Protocols"</i>.</p>
    <p style="text-align: justify; font-size: 20px; text-indent: 2em;">The <b>World Wide Web</b> or simply <i>"Web"</i>, is a way of accessing information over the medium of the internet. It is an information-sharing model that is built on top of the internet. The Web use the <b>HTTP protocol</b>, only one of the languages spoken over the internet, to transmit data.</p>
    <hr />
  </body>
</html>

output

Laboratory 7