No renderer 'odt' found for mode 'odt'

Bausteine [HTML & CSS]

Internetpräsenz erstellen - Hilfreiche Links

https://www.w3schools.com/css/css_navbar.asp

 <ul>
  <li><a href="webseite1.html">Home</a></li>
  <li><a href="webseite2.html">News</a></li>
  <li><a href="webseite3.html">Contact</a></li>
  <li><a href="webseite4.html">About</a></li>
</ul> 

Inhalt in einer Box zentrieren:

display: flex;
align-items: center;
justify-content: center;

https://developer.mozilla.org/de/docs/Web/CSS/Media_Queries/Using_media_queries

/* Mobile Styles */
@media only screen and (max-width: 400px) {
 
     }
 
/* Tablet Styles */
@media only screen and (min-width: 401px) and (max-width: 960px) {
 
}
 
/* Desktop Styles */
@media only screen and (min-width: 961px) {
    }