Menu
Coddy logo textTech

Font and Background Setup

Lesson 5 of 13 in Coddy's Sidebar | Front-end Project course.

challenge icon

Challenge

Easy

1. Set the font of the body to 'Arial'.

2. Set the background color of the body to your color choice (but not white).

Try it yourself

<!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>

All lessons in Sidebar | Front-end Project