Advertisement
Guest User

RHUL COMSOC LECTOUR 4 - NOCSS

a guest
Dec 1st, 2015
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.72 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <title>Css selector tutorlal</title>
  5. </head>
  6. <body>
  7. <div class="menu">
  8.     <nav>
  9.         <a href="#" target="active">Home</a>
  10.         <a href="#">more about us</a>
  11.         <a href="#">more about us</a>
  12.         <a href="#">more about us</a>
  13.         <a href="#">Contact us</a>
  14.         <a href="#">About us</a>
  15.     </nav>
  16. </div>
  17. <div class="content">
  18.     <h1 id="contentHeadline">testing</h1>
  19.     <table>
  20.         <tr>
  21.             <th>testing</th>
  22.             <th>testing</th>
  23.             <th>testing</th>
  24.             <th>testing</th>
  25.         </tr>
  26.         <tr>
  27.             <td>More testing that need also to be done</td>
  28.             <td>More testing that need also to be done</td>
  29.             <td>More testing that need also to be done</td>
  30.             <td>More testing that need also to be done</td>
  31.         </tr>
  32.         <tr>
  33.             <td>More testing that need also to be done</td>
  34.             <td>More testing that need also to be done</td>
  35.             <td>More testing that need also to be done</td>
  36.             <td>More testing that need also to be done</td>
  37.         </tr>
  38.         <tr>
  39.             <td>More testing that need also to be done</td>
  40.             <td>More testing that need also to be done</td>
  41.             <td>More testing that need also to be done</td>
  42.             <td>More testing that need also to be done</td>
  43.         </tr>
  44.         <tr>
  45.             <td>More testing that need also to be done</td>
  46.             <td>More testing that need also to be done</td>
  47.             <td>More testing that need also to be done</td>
  48.             <td>More testing that need also to be done</td>
  49.         </tr>
  50.         <tr class="imported">
  51.             <td>More testing that need also to be done</td>
  52.             <td>More testing that need also to be done</td>
  53.             <td>More testing that need also to be done</td>
  54.             <td>More testing that need also to be done</td>
  55.         </tr>
  56.     </table>
  57. </div>
  58. <div class="footer">
  59.     <a href="#">testing</a> | <a href="#">testing 2</a>
  60. </div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement