Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.16 KB | None | 0 0
  1. <!--
  2. /* Detta är en startsidan till demo-webbplatsen för läroboken Webbutveckling 1
  3.  *
  4.  * Det tänkta UF-företaget Läxhjälpen
  5.  * @version start
  6.  */
  7. -->
  8. <!DOCTYPE html>
  9. <html lang="sv">
  10. <head>
  11.   <meta charset="utf-8" />
  12.   <title>Startsida - Läxhjälpen</title>
  13.   <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14.   <link href="laxhjalpen.css" rel="stylesheet" />
  15. </head>
  16. <body class="startpage">
  17.   <header>
  18.     <div class="hwrap">
  19.       <a href="./"><img /></a>
  20.       <h1>Läxhjälpen</h1>
  21.     </div>
  22.     <p class="tagline"></p>
  23.   </header>
  24.  
  25.   <section class="menu">
  26.     <h2><a href="om-oss.html"></a>Om oss</h2>
  27.     <p></p>
  28.   </section>
  29.  
  30.   <section class="menu">
  31.     <h2><a href="arbeten.html"></a>Arbeten</h2>
  32.     <p></p>
  33.   </section>
  34.  
  35.   <section class="menu">
  36.     <h2><a href="blog.php"></a>Blog</h2>
  37.     <p></p>
  38.   </section>
  39.  
  40.   <section class="menu">
  41.     <h2><a href="contact.php">Contact</a></h2>
  42.     <p></p>
  43.   </section>
  44.  
  45.  
  46.  
  47. <!-- "bilderna" till länktexterna i form av entiteter-->
  48. &#x3020;
  49. &#x2318;
  50. &#x272A;
  51. &#x260E;
  52.  
  53.   <footer>
  54.     <small>&copy; Emil Haag och Fucboii AB</small>
  55.   </footer>
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement