branching-website.html 869 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link href="styles.css" rel="stylesheet" type="text/css">
  5. <title> Branching Practice Site </title>
  6. </head>
  7. <body>
  8. <h1> Branching </h1>
  9. <h2> A website to practice branching with Git. </h2>
  10. <p> This page has been created in order to practice branching with Git and GitHub. By creating branches, we can work on different versions of the same code in the same repository simultaneously! </p>
  11. <h2> Tips </h2>
  12. <p> This HTML file is associated to a CSS file. You will have to write you own style definitions and to create your own appropriate div part below. </p>
  13. <h1> Branches </h1>
  14. <div class="master">
  15. <h2> Master </h2>
  16. <p>I am the master</p>
  17. </div>
  18. <div class="example">
  19. <h2 class="example"> Example </h2>
  20. <p>I am an example</p>
  21. </div>
  22. </body>
  23. </html>