Selaa lähdekoodia

Update HTML & CSS

Pierre-Yves Barriat 7 vuotta sitten
vanhempi
commit
804c73a842
2 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa
  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;
 }