summaryrefslogtreecommitdiffstats
path: root/data/index.html
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2022-12-22 19:09:34 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2022-12-22 19:09:34 +0100
commitb6d1df48244db14d693c286445ca1384341ae0c1 (patch)
tree8ce0bdea077e5f132087f53437dab7bc34794233 /data/index.html
parent64ea63f2efadddf9bf185f7ce24bf3c56538b287 (diff)
downloadshack-b6d1df48244db14d693c286445ca1384341ae0c1.tar.gz
shack-b6d1df48244db14d693c286445ca1384341ae0c1.zip
Add webserver and simple webpage
Diffstat (limited to 'data/index.html')
-rw-r--r--data/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/data/index.html b/data/index.html
new file mode 100644
index 0000000..f3b7068
--- /dev/null
+++ b/data/index.html
@@ -0,0 +1,31 @@
1<!DOCTYPE html>
2<html lang="pl">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <meta http-equiv="X-UA-Compatible" content="ie=edge">
7 <title>Schack v.0.0.1</title>
8 <link rel="stylesheet" href="./style.css">
9 <link rel="icon" href="./favicon.ico" type="image/x-icon">
10 </head>
11 <body>
12 <main>
13 <h1>Schack</h1>
14
15 <section id="container">
16 <div id="controll-buttons">
17 <input id="button-previous-s" type="button" value="<< Previous Section" />
18 <input id="button-previous" type="button" value="< Previous" />
19
20 <input id="button-next" type="button" value="Next >" />
21 <input id="button-next-s" type="button" value="Next Section >>" />
22 </div>
23 </section>
24
25 <footer>
26 Github: <a href="https://github.com/jdlugosz963/schack" target="_blank">jdlugosz963/schack</a>
27 </footer>
28 </main>
29 <script src="script.js"></script>
30 </body>
31</html>