Create a full page colored border and include in the center
Create a full page colored border and include in the center text,three linking pages,and add a background color using HTML
Below is an example
<table style=\"border:30px outset tan;\">
<tr><td width=\"2000\" height=\"600\"></td>
<body bgcolor=\"burlywood\">
<tr>
</tr>
</table>
Solution
<html>
<table style=\"border:30px outset tan;\">
<tr><td width=\"2000\" height=\"600\"></td>
<body bgcolor=\"#E6E6FA\">
<center>This text will come in center!</center>
<p><a href=\"http://www.google.com/html/\">go to google</a></p>
<p><a href=\"http://www.gmail.com/html/\">go to gmail</a></p>
<p><a href=\"http://www.facebook.com/html/\">go to facebook</a></p>
<tr>
</tr>
</table>
</html>
