Skip to content
Snippets Groups Projects
Select Git revision
  • b1bc45ab33dc669227bc68911e16f739fe350dda
  • master default protected
2 results

index.html

Blame
  • user avatar
    Mihály Vesztergombi authored
    b1bc45ab
    History
    index.html 906 B
    <!DOCTYPE html>
    <html>
    <head>
    	<title>Stopwatch</title>
    	<meta charset="UTF-8"/>
    	<script type="text/javascript" src="main.js"></script>
    	<style>
    	/*accelerometer {
    		bottom: 20%;
    		position: fixed;
    	}*/
    	.button {
    		background-color: #0055FF;
    		border: none;
    		color: #FFFFFF;
    		padding: 20px;
    		text-align: center;
    		text-decoration: none;
    		font-size: 50px;
    		margin: 4px 2px;
    		border-radius: 20px;
    		outline: none;
    	}
    	#stopwatch {
    		text-align: center;
    		font-size: 120px;
    	}
    	</style>
    </head>
    <body onload="main();">
    
    	<input type="button" class="button" id="arm-button" value="Arm"\>
    	<input type="button" class="button" id="countdown-button" value="Countdown"\>
    
    	<div id="stopwatch"></div>
    
    	<!--
    	<div class="accelerometer">
    		<div id="accelerometer-x" value="X: "></div>
    		<div id="accelerometer-y" value="Y: "></div>
    		<div id="accelerometer-z" value="Z: "></div>
    	</div>
    	-->
    </body>
    </html>