Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
für sowas nimmt man heutzutage CSS ;)
HTML:style="background-image: #FF0000;"
<body bgcolor="#000000">
Ich mach das immer im Body-Tag. Da heißt das
<style type="text/css">
body{
background-color: rgb(255, 255, 255);
}
</style>
also in CSS geht das folgendermaßen:
Das <style> kommt in den head-"Bereich"Code:<style type="text/css"> body{ background-color: rgb(255, 255, 255); } </style>
<style type="text/css">
<!--
body {
background-color: #4A4943;
}
-->
</style>
Das Gängiste ist aber denke ich immer noch der Hexcode.
Wo kriegst Du denn dieses rgb-Zeugs her?[/code]