Menu
Coddy logo textTech

Configuración de fuente y fondo

Lección 5 de 13 del curso Barra lateral | Proyecto Front-end de Coddy.

challenge icon

Desafío

Fácil

1. Establece la fuente del body a 'Arial'.

2. Establece el color de fondo del body al color que elijas (pero que no sea blanco).

Pruébalo tú mismo

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
    <title>Sidebar</title>
</head>
    <body>
        <button id="openSidebarBtn">Open</button>
        <div id="sidebar" class="sidebar">
            <button id="closeSidebarBtn">Close</button>
            <p>Home</p>
            <p>About</p>
            <p>Services</p>
            <p>Contact</p>
        </div>
        <script src="script.js"></script>
    </body>
</html>

Todas las lecciones de Barra lateral | Proyecto Front-end