<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
<meta name="author" content="your name" />
<meta name="description" content="" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<!-- what a confusing mess -->
<!-- lets try tidying this up a little -->
<div id="page">
<div id="logo">
<h1><a href="/">My First Webpage</a></h1>
</div>
<div id="nav">
<ul>
<li class="red"><a href="#/home.html">Home</a></li>
<li class="orange"><a href="#/about.html">About</a></li>
<li class="yellow"><a href="#/contact.html">Contact</a></li>
</ul>
</div>
<div id="content">
<h2>Home</h2>
<p>
This is my first webpage! I was able to code all the HTML and CSS in order to make it. Watch out world of web design here I come!
</p>
<p>
I can use my skills here to create websites for my business, my friends and family, my C.V, blog or articles. As well as any games or more experiment stuff (which is what the web is really all about).
</p>
</div>
<div id="footer">
<p>
Webpage made by <a href="/" target="_blank">[your name]</a>
</p>
</div>
</body>
</html>
No comments:
Post a Comment