Create a web page as follows:
Title is "Fun With Links"
Body background color is cyan
The margin for the body should be 10%
The font-size for the body should be 2em
A Heading 1 tag contain the phrase Education is Key
A paragraph with the sentence Quincy College is best in class. The last part of the sentence "best in class" should be a hyperlink to the URL https://quincycollege.edu/bestinclass/
Please find the below code.
<!DOCTYPE html>
<html>
<title>Fun With Links</title>
<body style="background-color: cyan; margin: 10%; font-size:
2em;">
<!-- header -->
<h1>Education is Key</h1>
<!-- paragraph -->
<p>
<!-- anchor tag to use hyperlink -->
Quincy College is <a
href="https://quincycollege.edu/bestinclass/">best in
class.</a>
</p>
</body>
</html>
Please find the image attachment of the webpage in browser
Get Answers For Free
Most questions answered within 1 hours.