Body
Lesson 5 of 10 in Coddy's Stopwatch - HTML/CSS/JS Project course.
Let's move to the CSS (styling) part.
You will be asked for some specific styles, but you also have a lot of room to use your creative mind, use it!
Challenge
EasyIn the CSS file, target the body tag and add the following:
- font family of your choice
- margin set to 0
- background of your choice, not default
- height of
100vh - center everything using flex box
Try it yourself
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Write HTML code here -->
<script src="script.js"></script>
</body>
</html>All lessons in Stopwatch - HTML/CSS/JS Project
1Introduction
Overview