Guest User

Untitled

a guest
Nov 19th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. </head>
  6. <body>
  7. <div class="container">
  8. <div class="row">
  9. <h2>My Projects</h2>
  10.  
  11. <!-- Add css classes to make this div 4 columns (1/3 of the page) -->
  12. <div class="col-xs-4 col-sm-4">
  13.  
  14. <!-- Add the css class for the bootstrap thumbnail component -->
  15. <div class="thumbnail">
  16. <div style="background-color: gray; height:250px">
  17. </div>
  18.  
  19. <!-- Add the css class for the thubmnail caption from bootstrap -->
  20. <div class="caption">
  21. <h3>Project 1</h3>
  22. <p>This is a project that I completed.</p>
  23. </div>
  24. </div>
  25. </div>
  26.  
  27. <!-- Add css classes to make this div 4 columns (1/3 of the page) -->
  28. <div class="col-xs-4 col-sm-4">
  29.  
  30. <!-- Add the css class for the bootstrap thumbnail component -->
  31. <div class="thumbnail">
  32. <div style="background-color: gray; height:250px">
  33. </div>
  34.  
  35. <!-- Add the css class for the thubmnail caption from bootstrap -->
  36. <div class="caption">
  37. <h3>Project 2</h3>
  38. <p>This is another project that I completed.</p>
  39. </div>
  40. </div>
  41. </div>
  42.  
  43. <!-- Add css classes to make this div 4 columns (1/3 of the page) -->
  44. <div class="col-xs-4 col-sm-4">
  45.  
  46. <!-- Add the css class for the bootstrap thumbnail component -->
  47. <div class="thumbnail">
  48. <div style="background-color: gray; height:250px">
  49. </div>
  50.  
  51. <!-- Add the css class for the thubmnail caption from bootstrap -->
  52. <div class="caption">
  53. <h3>Project 3</h3>
  54. <p>This is also a project that I completed.</p>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </body>
  61. </html>
Add Comment
Please, Sign In to add comment