vonko1988

html_semanticWeb_homework_task2.html

Jan 24th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.13 KB | None | 0 0
  1. <!doctype html>
  2. <html class = "no-js">
  3.     <head>
  4.         <title>Task2</title>
  5.         <link href = "task2.css" type = "text/css" rel = "stylesheet"/>
  6.         <script src="modernizr.custom.67503.js"></script>
  7.         <script type="text/javascript" src="PIE.js"></script>
  8.     </head>
  9.     <body>
  10.         <header>
  11.         <!-- I'm using div id = "hgroup because hgroup tag is obsolete" -->
  12.             <div id = "hgroup">
  13.                 <h1>Logo</h1>
  14.                 <h2>Welcome to our Web Site</h2>
  15.             </div>
  16.             <nav>
  17.                 <ul>
  18.                     <li>Nav Item 1</li>
  19.                     <li>Nav Item 1</li>
  20.                     <li>Nav Item 1</li>
  21.                     <li>Nav Item 1</li>
  22.                 </ul>
  23.             </nav>
  24.         </header>
  25.         <section>
  26.             <article>
  27.                 <table>
  28.                     <thead>
  29.                         <tr>
  30.                             <th>First Name</th>
  31.                             <th>Last Name</th>
  32.                             <th>Score</th>
  33.                         </tr>
  34.                     </thead>
  35.                     <tbody>
  36.                         <tr>
  37.                             <td>Doncho</td>
  38.                             <td>Minkov</td>
  39.                             <td>4.54</td>
  40.                         </tr>
  41.                         <tr>
  42.                             <td>Svetlin</td>
  43.                             <td>Nakov</td>
  44.                             <td>4.31</td>
  45.                         </tr>
  46.                         <tr>
  47.                             <td>Georgi</td>
  48.                             <td>Georgiev</td>
  49.                             <td>4.54</td>
  50.                         </tr>
  51.                     </tbody>
  52.                 </table>
  53.             </article>
  54.         </section>
  55.     </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment