Guest User

Untitled

a guest
Jan 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Company page</title>
  6. </head>
  7. <body>
  8. <p>Welcome! Here you can find the following things:</p>
  9. <ol>
  10. <li><em><a href="#logo">Company's logo</a></em></li>
  11. <li><a href="#employees">List of employees</a></li>
  12. </ol>
  13.  
  14. <h1>Company's logo</h1>
  15. <p>Company uses the following logos:</p>
  16. <ul>
  17. <li>New logo:</li><img src="new_logo.gif"/>
  18. <li>Old logo:</li><img src="old_logo.gif"/>
  19. </ul>
  20.  
  21. <h1>List of employees</h1>
  22. <table>
  23. <thead>
  24. <th>First name</th>
  25. <th>Last name</th>
  26. </thead>
  27.  
  28. <tr>
  29. <td>Mary</td>
  30. <td>Williams</td>
  31. </tr>
  32.  
  33. <tr>
  34. <td>James</td>
  35. <td>Smith</td>
  36. </tr>
  37. </table>
  38. </body>
  39. </html>
Add Comment
Please, Sign In to add comment