Skip to main content
eick-at moodle
  • Home
  • Calendar
  • More
You are currently using guest access
Log in
eick-at moodle
Home Calendar
Expand all Collapse all
  1. LF 10a: Benutzerschnittstellen
  2. CSS
  3. Aufgabe: CSS

Aufgabe: CSS

Completion requirements
Opened: Friday, 12 September 2025, 12:00 AM
Due: Friday, 19 September 2025, 12:00 AM

Analysieren Sie das Design der folgenden Webseite:

index.css

1
2
3
4
/* Diese CSS-Datei wird eingebunden */
h1, h2, h3 {
    color: black;
}

index.html

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
<html>
    <head>
        <link href="index.css" rel="stylesheet" type="text/css" />
        <style>
            h2, h3 {
                color: grey;
            }
            h4 {
                color: orange !important;
            }
        </style>
    </head>
    <body>
        <h1>Hauptüberschrift</h1>
        <h2 style="color: red;">Überschrift</h2>
        <h3>Unterüberschrift</h3>
        <h4 style="color: blue;">Demo der !IMPORTANT Regelung</h4>
    </body>
</html>

Begründen Sie Ihre Angaben!
Welche Vor- und Nachteile hat die !IMPORTANT-Regel?


You are currently using guest access (Log in)
Data retention summary
Get the mobile app
Powered by Moodle