blob: f3b70681e3a7d6f532781eb93314095de194bb1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Schack v.0.0.1</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<main>
<h1>Schack</h1>
<section id="container">
<div id="controll-buttons">
<input id="button-previous-s" type="button" value="<< Previous Section" />
<input id="button-previous" type="button" value="< Previous" />
<input id="button-next" type="button" value="Next >" />
<input id="button-next-s" type="button" value="Next Section >>" />
</div>
</section>
<footer>
Github: <a href="https://github.com/jdlugosz963/schack" target="_blank">jdlugosz963/schack</a>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>
|