Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen der Seite angezeigt.

Link zu der Vergleichsansicht

Beide Seiten, vorherige Überarbeitung Vorherige Überarbeitung
Nächste Überarbeitung
Vorherige Überarbeitung
gf_informatik:web:repetition:websites [2022-01-10 10:24] gragf_informatik:web:repetition:websites [2022-01-10 10:36] (aktuell) gra
Zeile 21: Zeile 21:
 <nodisp 1> <nodisp 1>
 ++++Lösung|  ++++Lösung| 
-<code html>+ 
 +== HTML == 
 +<code html index.html>
 <html> <html>
  
Zeile 40: Zeile 42:
 </html> </html>
 </code> </code>
 +
 +== CSS ==
 +<code css style.css>
 +
 +body{
 +    background-color:lavender;
 +    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
 +}
 +
 +h1{
 +    text-align: center;
 +}
 +
 +a{
 +    font-size: 14pt;
 +    text-align: center;
 +    text-decoration: none;
 +    padding: 10px 20px;
 +    border-style: outset;
 +}
 +
 +a.red{
 +    background-color: red;
 +    color:lightpink ;
 +}
 +
 +a.red:hover{
 +    background-color: coral;
 +    color: darkred
 +}
 +
 +a.blue{
 +    background-color: blue;
 +    color:cyan;
 +}
 +
 +a.blue:hover{
 +    background-color: cornflowerblue;
 +    color: darkblue
 +}
 +</code>
 +
 ++++ ++++
 </nodisp> </nodisp>
  
  • gf_informatik/web/repetition/websites.1641810287.txt.gz
  • Zuletzt geändert: 2022-01-10 10:24
  • von gra