Skip to content

Commit

Permalink
Add Changes in index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek2316 committed Jun 25, 2024
1 parent af9a851 commit f30b7dd
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,36 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>Guess the Color</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#options-container {
display: grid;
grid-template-columns: repeat(3, 0fr);
}
#options-container > div{
height: 75px;
width: 75px;
margin: 5px;
border-radius: 10px;
cursor: pointer;
}
#options-container > div:hover {
scale: 1.2;
transition: 0.4s all;
}
</style>
</head>
<body>

<div>
<h1 id="color-code"></h1>
</div>
<div>
<h4>Score: <span id="score"></span></h4>
</div>
<div id="options-container"></div>
<script src="script.js"></script>
</body>
</html>

0 comments on commit f30b7dd

Please sign in to comment.