Explorar el Código

Update HTML & CSS

Pierre-Yves Barriat hace 7 años
padre
commit
804c73a842
Se han modificado 2 ficheros con 5 adiciones y 2 borrados
  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;
 }