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.
hi, also ich will die hintergrundsfarbe von meinem div tag ändern auf orange kann mir jemand sagen wo und wie ich das mache?
<div style="background-color: orange;"> Inhalt... </div>
<html>
<head>
<style type="text/css">
.ein-name-den-du-gewaehlt-hast {
background-color: orange;
}
</style>
</head>
<body>
<div class="ein-name-den-du-gewaehlt-hast"> Inhalt... </div>
</body>
</html>