In: Computer Science
1.Write an HTML footer element to that states:
o“Copyright 2019. All rights reserved”, using the copyright symbol
oThe company e-mail, [email protected] as an e-mail link
Since copyright is a special symbol so it has to be displayed using an HTML entity. The specified entity for copyright symbol is © and the tag for displaying the link for email address is <a> called the hyperlink tag which is used to display the concerned email link.
The screenshot of code and the generated output is attached with
the answer to clarify the indentation and output of the
code.
<html>
<head>
<title>
</title>
</head>
<body>
<footer>
<p>© "Copyright 2019. All rights reserved"
<a href="[email protected]">e-mail to [email protected]</a>
</p>
</footer>
</body>
</html>