Generation

css from descriptionWed, 19 Jul 2023

Genera un css para este html <div class="container" id="main"> <img src="imagen.png" width="500px" height="500px" style="display:block; margin:auto;"/> <form action="formulario.html" method="post" enctype="multipart/form-data"> <p>Nombre del Boletin</p> <input type="text" name="name" id="name"> <p>Fecha de publicacion</p> <input type="date" name="date" id="date"> <p>Seleccionar Archivo</p> <input type="file" name="file" id="file"> <input type="submit" name="submit" id="submit" value="Submit"> </form> </div> La pagina tiene un background color white Los botones tienen un background color #A52925 El campo de texto y el campo de fecha tiene un background color #FFEBEE

.container { background-color: #fff; } .container button { background-color: #A52925; } .container input { background-color: #FFEBEE; }

Questions about programming?Chat with your personal AI assistant