Advertisement
Guest User

CCC Projects

a guest
Nov 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>My First Webpage</title>
  6. <meta name="description" content="Creative Computing Club Stuff">
  7. <meta name="author" content="Creative Computing Club">
  8. <link rel="stylesheet" type="text/css" href="style.css" />
  9. </head>
  10.  
  11. <body>
  12.  
  13. <div id="header">
  14. <h1>My Web Page</h1>
  15. </div>
  16.  
  17. <div id="navleft">
  18. <br>
  19. <a href="projects.html">My Projects</a> <br>
  20. <a href="games.html">My Games Page</a> <br>
  21. <a href="contact.html">Contact</a> <br>
  22. </div>
  23.  
  24. <div id="mainsection">
  25. <h1>My Projects</h1>
  26. <table width="100%">
  27. <tr>
  28. <td><img src="ProjectImage1.png" width="100%"></td>
  29. <td><img src="ProjectImage2.png" width="100%"></td>
  30. <td><img src="ProjectImage3.png" width="100%"></td>
  31. </tr>
  32. <tr>
  33. <td><img src="ProjectImage4.png" width="100%"></td>
  34. <td><img src="ProjectImage5.png" width="100%"></td>
  35. <td><img src="ProjectImage6.png" width="100%"></td>
  36. </tr>
  37. </table>
  38. </div>
  39.  
  40. <div id="footer">
  41. Copyright ©2015
  42. </div>
  43.  
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement