Add number guessing game with HTML, CSS, and JavaScript implementation

This commit is contained in:
vista-man
2025-01-27 20:17:35 +01:00
parent ef1b5f2420
commit 5b2c9b856e
3 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
}
h1 {
color: #333;
}
input, button {
padding: 10px;
margin: 5px;
font-size: 16px;
}
#result {
margin-top: 20px;
font-size: 18px;
color: #555;
}