48 lines
888 B
HTML
48 lines
888 B
HTML
<html>
|
|
<style>
|
|
body {
|
|
background-image: url();
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
margin-top: 10%;
|
|
font-size: 85px;
|
|
}
|
|
|
|
.container {
|
|
padding: 5px;
|
|
border: 2px solid; /* Nanti dihapus */
|
|
border-radius: 7pt; /* Nanti dihapus */
|
|
width: 70%;
|
|
justify-self: center;
|
|
background-image: url();
|
|
}
|
|
|
|
#button {
|
|
font-size: 35px;
|
|
margin-top: 5%;
|
|
width: 50%;
|
|
margin-bottom: 5%;
|
|
border: 1px solid;
|
|
border-radius: 3pt;
|
|
padding: 2px;
|
|
justify-self: center;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<h1>EAT THAT APPLE</h1>
|
|
<div class="container">
|
|
<a href="game.html">
|
|
<div id="button">Play Game</div>
|
|
</a>
|
|
|
|
<div id="button">Leaderboard</div>
|
|
<div id="button">Logout</div>
|
|
</div>
|
|
</body>
|
|
|
|
<script></script>
|
|
</html>
|