17 lines
416 B
HTML
17 lines
416 B
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chess Game Downloader</title>
|
|
</head>
|
|
<body>
|
|
<h1>Chess Game Downloader</h1>
|
|
<input type="text" id="username" placeholder="Enter username">
|
|
<button onclick="downloadGames()">Download Games</button>
|
|
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|