33 lines
555 B
HTML
33 lines
555 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- <link rel="stylesheet" type="text/css" href="day1.css"> -->
|
|
<title>my page</title>
|
|
</head>
|
|
<body>
|
|
<center>
|
|
<header>
|
|
<h1>MY cool blog</h1>
|
|
<hr />
|
|
</header>
|
|
<main>
|
|
<h2>some blog title</h2>
|
|
<p>
|
|
this is my<br />
|
|
web page!
|
|
</p>
|
|
<hr width="50%" />
|
|
<h2>some other blog title</h2>
|
|
<p>
|
|
this is my<br />
|
|
web page!
|
|
</p>
|
|
</main>
|
|
<footer>
|
|
<a href="http://google.com">Search stuff</a>
|
|
<a href="http://bing.com">Cant find things</a>
|
|
</footer>
|
|
</center>
|
|
</body>
|
|
</html>
|