<?php $clientaddress = str_replace(array('.', ':'), '',$_SERVER["REMOTE_ADDR"]); ?>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
        content="width=device-width, 
                initial-scale=1.0">
    <link href="/fonts/roboto_condensed/rc.css" rel="stylesheet">
    <link href="/fonts/roboto_mono/rm.css" rel="stylesheet">
    <link rel="stylesheet" href="style.css">
    <title>Clock</title>
</head>

<body>
    <div class="clock">
		<div class="timeframe">
        	<div id='background' onclick='playAudioSequence()'>
				<div class="time" id="time">00:00:00</div>
			</div>
		</div>
		<div class="dowframe" id="dowframe">
			<div class="dow" id="dowc">00</div>
		</div>
		<div class="dateframe" id="dateframe">
			<div class="date" id="datec">00</div>
		</div>
    </div>
    <script src="script.js"></script>
</body>

</html>

