From 9a8952fa37c47dd02a45a98726d48cb192cf3b23 Mon Sep 17 00:00:00 2001 From: Joshua Barlin <jbarlin@myune.edu.au> Date: Sat, 18 Aug 2018 11:26:55 +1000 Subject: [PATCH] Add header and css --- css/core.css | 8 ++++++++ index.html | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 css/core.css diff --git a/css/core.css b/css/core.css new file mode 100644 index 0000000..264c17b --- /dev/null +++ b/css/core.css @@ -0,0 +1,8 @@ +body{ + height: 100%; +} +#input-div, #output-div{ + height: 50%; + width: 100%; + display: block; +} \ No newline at end of file diff --git a/index.html b/index.html index 3d791af..6f06151 100644 --- a/index.html +++ b/index.html @@ -2,9 +2,11 @@ <head> <script src="js/jquery-3.3.1.js"></script> + <link href="css/core.css" /> </head> <body> + <h1>eRecreuitment Advertisment Deigner</h1> <div id="input-div"> <textarea id="input-textarea"> -- GitLab