From f47b2e3f68e69238b731d6183e739805db20ae5b Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 14 Feb 2021 20:25:55 +0100 Subject: Control a ship that can fire missiles --- public/icon.png | Bin 0 -> 1060 bytes public/index.html | 27 +++++++++++++++++++++++++++ public/main.css | 11 +++++++++++ 3 files changed, 38 insertions(+) create mode 100644 public/icon.png create mode 100644 public/index.html create mode 100644 public/main.css (limited to 'public') diff --git a/public/icon.png b/public/icon.png new file mode 100644 index 0000000..3bc9ba2 Binary files /dev/null and b/public/icon.png differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..bcedaf9 --- /dev/null +++ b/public/index.html @@ -0,0 +1,27 @@ + + + + +Shoot + + + + + + + + diff --git a/public/main.css b/public/main.css new file mode 100644 index 0000000..2654c0e --- /dev/null +++ b/public/main.css @@ -0,0 +1,11 @@ +html { + height: 100%; +} + +body { + height: 100%; + margin: 0; + display: flex; + justify-content: center; + align-items: center; +} -- cgit v1.2.3