Design CSS

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6
A <div> (short for "division") is a block-level container used to group elements and apply styles.

<div id="main-containe class="box"> Content inside a div</div>

.box
{ width: 200px; height: 100px; background-color: lightblue; text-align: center; padding: 10px; }
A <span> is an inline container used to apply styles or scripts to a small part of text inside a block-level element. The element does not affect layout but allows styling specific parts of text.

The <p> tag is used to define a paragraph in HTML. It creates a block of text with automatic spacing before and after it.
Each <p> tag starts on a new line and has default margin.

<p class="custom-text">Styled paragraph</p> .custom-text { color: blue; font-size: 18px; line-height: 1.5; text-align: justify; }

Text Überschrift 1

Text Überschrift 2

Text Überschrift 3

Text Überschrift 4

Text Überschrift 5

Text Überschrift 6