Standby / index.html
TIMBOVILL's picture
Update index.html
73695ec verified
raw
history blame
1.99 kB
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@font-face {
font-family: Stencil;
src: url("/Stencil.otf");
}
@font-face {
font-family: Roboto;
src: url("https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxM.woff2");
}
@font-face {
font-family: Aldrich;
src: url("https://fonts.gstatic.com/s/aldrich/v10/MCoLzAbNqrnQxod8bUzPAJZY.woff2");
}
</style>
<meta charset="UTF-8">
<title>Standby</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="manifest.json" />
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Aldrich'>
<link rel="stylesheet" href="./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body>
<div id="MyClockDisplay" class="clock" onclick="toggleMenu()"></div>
<div id="menu" class="menu">
<div class="color-options">
<h3>Select Color</h3>
<div class="color-option" onclick="changeColor('#73b66f')">Green</div>
<div class="color-option" onclick="changeColor('#ff0000')">Red</div>
<div class="color-option" onclick="changeColor('#0000ff')">Blue</div>
<div class="color-option" onclick="changeColor('#ffffff')">White</div>
</div>
<div class="font-options">
<h3>Select Font</h3>
<div class="font-option" onclick="changeFont('Stencil')">Stencil</div>
<div class="font-option" onclick="changeFont('Roboto')">Roboto</div>
<div class="font-option" onclick="changeFont('Aldrich')">Aldrich</div>
</div>
<button onclick="toggleMenu()">Done</button>
</div>
<script src="./script.js"></script>
</body>
</html>