This commit is contained in:
JERRY F 2025-12-01 12:15:56 +07:00
parent 0bc467a684
commit b6fbbc31c7
2 changed files with 18 additions and 5 deletions

View File

@ -2,7 +2,10 @@
background-color: rgb(24, 24, 24); background-color: rgb(24, 24, 24);
color: white; color: white;
text-align: left; text-align: left;
font-family: "Comic Sans MS", cursive, sans-serif; font-family: "Pixelify Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-size: 24px; font-size: 24px;
} }
header, header,
@ -119,6 +122,10 @@
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
transition: background-color 0.2s, color 0.25s; transition: background-color 0.2s, color 0.25s;
font-family: "Pixelify Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
} }
#mode-normal { #mode-normal {
background-color: #73e4c2; background-color: #73e4c2;

View File

@ -1,8 +1,14 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<link rel="stylesheet" href="GameStyle.css"> <link rel="stylesheet" href="GameStyle.css" />
</head> <link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Coral+Pixels&family=Jacquarda+Bastarda+9&family=Pixelify+Sans:wght@400..700&display=swap"
rel="stylesheet"
/>
</head>
<body> <body>
<!-- header --> <!-- header -->
<header> <header>
@ -45,6 +51,6 @@
</div> </div>
</footer> </footer>
<!-- akhir html body --> <!-- akhir html body -->
<script src="GameLogic.js"></script> <script src="GameLogic.js"></script>
</body> </body>
</html> </html>