- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Challenge: The Foreboding Shadows</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button class="btn" type="button">Let’s go!</button>
<div class="help"></div>
</body>
</html>
CSS
html,
body {
margin: 0;
padding: 0;
width: 300px;
background-color: #ecf0f1;
font-size: 18px;
font-family: "Arial", sans-serif;
}
.btn {
display: block;
margin: 0 25px;
margin-top: 100px;
padding: 20px 0;
width: 250px;
border: none;
box-sizing: content-box;
background-color: #2c3e50;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
line-height: 20px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.