Herzlich willkommen zum SELF-Treffen 2026
vom 24.04. – 26.04.2026 in Halle (Saale)

Beispiel:Karaoke-2.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche

<!DOCTYPE html> <html lang="de"> <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <link href="./Beispiel:Grundlayout.css" media="screen" rel="stylesheet"> <title>Liedtext und Akkorde - 2</title> <style>

 body {
   font-family: sans-serif;
   max-width: 50em;
   margin: 1em auto;
   padding: 0 1rem 3rem;
 }
 audio {
   margin: 1em 0;
   width: 100%;
 }
 .lyrics {
   font-size: 1.2em;
   line-height: 2.5em;
 }
 .part {
   color: steelblue;
   margin: .3em 0;
   font-weight: bold;
 }
 .line {
   margin: 0 0 -.2em 0;
   padding: .3em 1em 0 1em;
   opacity: 1;
 }
 ruby {
   ruby-position: over;
   margin: 0 0.2em;
 }
 rt {
   font-size: 0.9em;
   color: #f77;
   font-weight: bold;
 }
 @media print {
   body {
     max-width: 100%;
     margin-left: 1cm;
   }
   audio,
   button {
     display: none;
   }
   .lyrics {
     font-size: 1em;
     line-height: 2.5em;
   }
 }
 </style>

</head> <body> <header>

🎤 Scarborough Fair <button onclick="window.print()">Seite drucken</button>

</header> <audio controls="" id="player">

 Dein Browser unterstützt das Audio-Element nicht.

</audio>

<section class="lyrics">

1.

AreAm you going to ScarboroughG Fair?Am CParsley, sageAm, rose-maryD and thyme,Am

Remember meC to one who lives there,G SheAm once wasG a true love of mine.Am

2.

TellAm her to make me a cambricG shirt,Am CParsley, sageAm, rose-maryD and thyme,Am

Without no seamsC nor needle-work,G ThenAm she'll beG a true love of mine.Am

3.

TellAm her to find me an acreG of land,Am CParsley, sageAm, rose-maryD and thyme,Am

Between the salt waterC and the sea strands,G ThenAm she'll beG a true love of mine.Am

4.

TellAm her to plough it with a sickleG of leather,Am CParsley, sageAm, rose-maryD and thyme,Am

And bind it allC with a bunch of heather,G ThenAm she'll beG a true love of mine.Am

5. (1. Strophe wiederholen)

AreAm you going to ScarboroughG Fair?Am CParsley, sageAm, rose-maryD and thyme,Am

Remember meC to the one who lives there,G SheAm once wasG a true love of mine.Am

</section>

</body> </html>