フォントと背景の設定
Coddyの「サイドバー | フロントエンド制作」コースのレッスン 5/13。
チャレンジ
簡単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>