Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, December 12, 2012

Codecademy Sample Solution: Codeyear The site structure



<!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" />

    <style>
    *{ border: 1px solid grey; }
    </style>
</head>
<body>
<div id="page">
<div id="logo">
<h1><a href="/">My First Webpage</a></h1>
</div>
<div id="nav">
<ul>
<li><a class="" href="#/home.html">Home</a></li>
<li><a class="" href="#/about.html">About</a></li>
<li><a class="" href="#/contact.html">Contact</a></li>
</ul>
</div>
<div id="content">
            <h2>Kind of like a newspaper headline</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>
</div>
</body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts