-Annie-

Simple Table

Sep 4th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>Simple Table</title>
  5.     <link rel="stylesheet" type="text/css" href="styles.css">
  6. </head>
  7. <body>
  8.     <table>
  9.         <thead>
  10.             <tr>
  11.                 <th>Software University</th>
  12.             </tr>
  13.         </thead>
  14.         <tbody>
  15.             <tr>
  16.                 <td>
  17.                     <img src="images/softuni-logo.png" alt="softuni-logo">
  18.                 </td>
  19.             </tr>
  20.             <tr>
  21.                 <td class="subheader">Accessible and high<br/>qualty software<br/>education.</td>
  22.                 <td>Our mission is to make<br/>people we train true<br/>professionals in the<br/>software industry and<br/>support them in finding<br/>employment.</td>
  23.             </tr>
  24.         </tbody>
  25.     </table>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment