Menu
Coddy logo textTech

폰트와 배경 설정

Coddy의 사이드바 | 프론트엔드 프로젝트 코스 레슨 — 13개 중 5번째.

challenge icon

챌린지

쉬움

1. body의 글꼴을 'Arial'로 설정하세요.

2. body의 배경색을 원하는 색상으로 설정하세요(단, 흰색 제외).

직접 해보기

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

사이드바 | 프론트엔드 프로젝트의 모든 레슨