score: 98/100
directions
- Create a new HTML file and save it as Laboratory10.html
- The title should be World Wide Web Consortium
- Create a
<h1>heading that will display “World Wide Web Consortium” - The heading should be centered and the font should be “century gothic”
- Insert the image named logos-w3c, the size should be 250px x 170px. The image should be centered.
- The paragraphs should be justified with a 1.5em indentation, font should be “Verdana” with a size of 1.5em.
- Insert another image named pics-timbernerslee, the size should be 285px x 356px. The image should be centered and must have a border-radius of 300px.
- The image’s caption should be centered, the font should be “Georgia” and the size should be 14px.
- Upload the screenshots of (a) source code and (b) output.
code
<!DOCTYPE html>
<html>
<head>
<title>World Wide Web Consortium</title>
</head>
<body>
<h1 style="text-align: center; font-family: 'century gothic', monospace">World Wide Web Consortium</h1>
<img src="logos-w3c.png" alt="logos-w3c" style="width: 250px; height: 170px; display: block; margin: auto;">
<p style="text-align: justify; text-indent: 1.5em; font-family: 'Verdana', sans-serif; font-size: 1.5em;">
The <b>World Wide Web Consortium</b> is the main international standards organization for the World Wide Web.
</p>
<p style="text-align: justify; text-indent: 1.5em; font-family: 'Verdana', sans-serif; font-size: 1.5em;">
Founded and currently led by <b>Tim Berners-Lee</b>, the consortium is made up of member organizations which maintain full-time staff for the purpose of working together in the development of standards for the World Wide Web.
</p>
<p style="text-align: justify; text-indent: 1.5em; font-family: 'Verdana', sans-serif; font-size: 1.5em;">
The <b>W3C</b> also engages in education and outreach, develops software and serves as an open forum for discussion about the web.
</p>
<img src="pics-timbernerslee.jpg" alt="pics-timbernerslee" style="width: 285px; height: 356px; border-radius: 300px; display: block; margin: auto;">
<p style="text-align: center; font-size: 14px; font-style: italic;">
<b>Sir Timothy John Berners-Lee</b> is an English Engineer and computer scientist, best known as the inventor of the World Wide Web. He is currently a professor of Computer Science at the University of Oxford.
</p>
</body>
</html>