Pierre-Yves Barriat 7 anni fa
parent
commit
804c73a842
2 ha cambiato i file con 5 aggiunte e 2 eliminazioni
  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;
 }