Advertisement
Guest User

index.html

a guest
Oct 11th, 2012
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.25 KB | None | 0 0
  1. <!-- Created by TopStyle Trial - www.topstyle4.com -->
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5.     <title>Meine Website</title>
  6.     <link rel="stylesheet" type="text/css" href="design.css">
  7. </head>
  8.  
  9. <body>
  10. <div id="kopfzeile">
  11. <div id="kopfzeile_menu">
  12.                  <ul>
  13.                         <li class="current_page_item"><a href="#" class="first">Home</a></li>
  14.                         <li><a href="#">Projekte</a></li>
  15.                         <li><a href="#">Grundlagen</a></li>
  16.                         <li><a href="#">Me</a></li>
  17.                         <li><a href="#">Kontakt</a></li>
  18.                 </ul>
  19. </div>
  20. </div>
  21. <div id="logo">
  22.           <h1>My electronics lab</h1>
  23.            <p><em> Elektronikprojekte aller Art...</em></p>
  24. </div>
  25. <div id="website">
  26.     <div id="header">
  27.     </div>
  28.     <div id="inhalt">
  29.         <div class="post">
  30.             <h2 class="title">Willkommen</h2>
  31.              <div class="entry">
  32.              <?php
  33.                 $inhalt = file_get_contents('./text.txt');
  34.               echo $inhalt;
  35.             ?>
  36.           </div>
  37.         </div> 
  38.     </div>
  39.     <div id="footer">
  40.     </div>
  41. </div>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement