Browse Source

Update HTML & CSS

Pierre-Yves Barriat 7 years ago
parent
commit
804c73a842
2 changed files with 5 additions and 2 deletions
  1. 2 0
      project/windows/branching-website.html
  2. 3 2
      project/windows/styles.css

+ 2 - 0
project/windows/branching-website.html

@@ -8,5 +8,7 @@
     <h1> Branching </h1>
     <h2> A website to practice branching with Git. </h2>
     <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>
+    <h2>Branches</h2>
+    <p class="master">I am the master</p>
   </body>
 </html>

+ 3 - 2
project/windows/styles.css

@@ -1,3 +1,4 @@
-h1 {
-  color: blue;
+.master {
+  background-color: blue;
+  color: white;
 }