index.html

style.css
script.js
This commit is contained in:
Ismail Amara
2026-03-04 10:00:03 +01:00
parent b328516a08
commit ae5c506154
3 changed files with 132 additions and 0 deletions

47
MainPage/ismail/style.css Normal file
View File

@@ -0,0 +1,47 @@
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
text-align: center;
margin: 0;
padding: 0;
}
.container {
margin-top: 50px;
}
h1 {
color: #333;
}
button {
padding: 10px 20px;
margin: 5px;
border: none;
border-radius: 8px;
background-color: #4CAF50;
color: white;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #45a049;
}
input {
padding: 10px;
font-size: 16px;
width: 150px;
margin-top: 10px;
}
.question-box {
margin-top: 30px;
}
.score {
margin-top: 20px;
font-size: 20px;
font-weight: bold;
}