28 lines
643 B
HTML
28 lines
643 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<head>
|
|
<div style="background-color:red">
|
|
<title>Mr. James Homepage 1</title>
|
|
<!-- link to my CSS style sheet -->
|
|
<link rel="stylesheet" type="text/css" href="mystyles.css">
|
|
<h1>Mr. James Homepage</h1>
|
|
|
|
</div>
|
|
</head>
|
|
|
|
<body style="background-color:yellow">
|
|
<p>body content here.</p>
|
|
|
|
<!-- add more content here -->
|
|
|
|
</body>
|
|
|
|
<footer>
|
|
<div style="background-color:white">
|
|
<p>Posted by: Mr. James</p>
|
|
<p>Contact information: <a href="mailto:someone@example.com">someone@example.com</a>.</p>
|
|
</div>
|
|
</footer>
|
|
</html>
|