index.html 915 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <html>
  2. <head>
  3. <title>This is my first web page</title>
  4. <!-- link rel="stylesheet" type="text/css" href="css/bootstrap.css" / -->
  5. <link rel="stylesheet" type="text/css" href="css/styles.css" />
  6. </head>
  7. <body>
  8. <a href="index.html">Home</a>
  9. &nbsp;
  10. <a href="aboutme.html">About me</a>
  11. &nbsp;
  12. <a href="contact.html" class="greenlink">Contact me</a>
  13. <hr />
  14. <!-- Manual responsive layout -->
  15. <div class="responsive" style="background-color: yellow">column 1</div>
  16. <div class="responsive" style="background-color: purple">column 2</div>
  17. <hr />
  18. <div class="container">
  19. <h1>This is my first web page</h1>
  20. <div class="row">
  21. <div class="col-md-3 thin_border">
  22. Some content here for panel 1
  23. </div>
  24. <div class="col-md-9 thin_border">
  25. Some content here for panel 2
  26. </div>
  27. </div>
  28. </div>
  29. </body>
  30. </html>