speedometer/index.html

15 lines
256 B
HTML
Raw Normal View History

2019-02-21 17:33:18 -07:00
<html>
<head>
<title>Spedometer</title>
2019-02-21 18:07:06 -07:00
<link type="text/css" rel="stylesheet" href="style.css">
2019-02-21 17:33:18 -07:00
</head>
<body>
2019-02-21 18:07:06 -07:00
<div id="speed">0.0</div>
<div id="units">m.p.h.</div>
2019-02-21 17:33:18 -07:00
2019-02-21 17:41:33 -07:00
<script type="application/javascript" src="main.js"></script>
2019-02-21 17:33:18 -07:00
</body>
</html>