Skip to content

Commit

Permalink
STYLE: Color palette
Browse files Browse the repository at this point in the history
  • Loading branch information
estefanionsantos committed Apr 4, 2024
1 parent 5046d4c commit 10a5ac1
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions color/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>color</title>
<style>
.container {
width: 94%;
margin: 0 3%;
float: left
}
.box{
width: 325px;
height: 325px;
margin: 0 5px 5px;
padding: 10px;
color: #fff;
background: #888;
font-size: 50px;
float: left
}
</style>
<!--
prm
scn
drk
lgt
stn
-->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9LPSBHG2ZT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-9LPSBHG2ZT');
</script>

</head>
<body>
<div class="container">
<div class="box" style="background: #c00">#c00</div>
<div class="box" style="background: #09c">#09c</div>
<div class="box" style="background: #ff0">#ff0</div>
<div class="box" style="background: #060">#060</div>
<div class="box" style="background: #f08">#f08</div>
</div>
</body>
</html>

0 comments on commit 10a5ac1

Please sign in to comment.