Beispiel:HTML strong-Element.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Beispiel zum strong-Element</title>
<style>
  body { margin:40px; }
  .hinweis { font-style:italic; border-bottom:1px solid #ccc; }

  ul, li{ list-style:none; padding:0; margin:0;}
  li { text-indent:-40px; padding-left:40px; }
 
</style>
<body>
  <h1>Beispiel zum strong-Element</h1>
  <p class="hinweis">Die Beispiele zeigen typische semantische Anwendungem zum strong-Element.</p>
   
  <p><strong>Beachten Sie:</strong> strong-Elemente sind nicht nur visuell kräftig, sie wirken wie kleine Überschriften.</p>

  <ul>
    <li><strong>Label 1:</strong> Mehrzeiliger <br>Inhalt</li>
    <li><strong>Label 2:</strong> Mehrzeiliger <br>Inhalt</li>
  </ul>  

</body>
</html>