Wednesday 10 October 2012

creating a Basic html5 Template


<!doctype html>
<html lang="en">
<head>
           <meta charset="utf-8"/>
           <title>fasi website</title>
           <link rel="stylesheet" href="main.css">
</head>
<body>
        <header>
               <h1>welcome to thenewboston</h1>
         </header>
           <nav>
                    <ul>
                  <li>Home</li>
                  <li>Tutorials</li>
                   <li>broadcast</li>
                    </ul>
          </nav>
           <section>
                       <article>
                                <header>
                                    <hgroup>
                                               <h1>title of article</h1>
                                               <h2>subtitle for article!</h2>
                                     </hgroup>
                                </header>
                                           <p>This is the best article eva !</p>
                                  <footer>
                                          <p> wtitten by fasi ahmed</p>
                                    </footer>
                     </article>
            </section>

          <aside><h4>news</h4>fasi has a new dog</aside>
         <footer> copyright thenewboston 2012</footer>
</body>
</html>

No comments:

Post a Comment