Explorar o código

Update HTML & CSS

Pierre-Yves Barriat %!s(int64=7) %!d(string=hai) anos
pai
achega
804c73a842
Modificáronse 2 ficheiros con 5 adicións e 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;
 }