index.html 705 B

1234567891011121314151617181920212223242526272829303132
  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. <div class="container">
  15. <h1>This is my first web page</h1>
  16. <div class="row">
  17. <div class="col-md-3 thin_border">
  18. Some content here for panel 1
  19. </div>
  20. <div class="col-md-9 thin_border">
  21. Some content here for panel 2
  22. </div>
  23. </div>
  24. </div>
  25. </body>
  26. </html>