Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 329 Bytes

#1 - Simply Square.md

File metadata and controls

20 lines (16 loc) · 329 Bytes

1 - Simply Square

Objective

CSS Battle Challenge

My Solution

<div></div>
<style>
body {
    background: #5d3a3a;
    margin: 0;
}
div {
    width: 200px;
    height: 200px;
    background: #b5e0ba;
}
</style>