eevee/index.html

20 lines
721 B
HTML
Raw Permalink Normal View History

2025-08-18 19:54:03 +02:00
<html>
<head>
<title>eEVee Tracker</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id='navigation' style='overflow:auto;'>
<div style='float:left;padding:10px;'><a href='index.html'>Tracker</a></div><div style='float:left;padding:10px;'><a href='about.html'>About</a></div>
</div>
<h1>Hello Trainer</h1>
<div id="main_area"></div>
<div id="opponent_search_field" style="margin-top:20px">
<label for='opponent'>Opponent:</label><input type=text id='opponent' onkeyup='render_opponents()' size=42><br>
</div>
<div id="opponents_area"> </div>
<script type="text/javascript" src="js/eevee.js"></script>
</body>
</html>