From 0e41cc3c7e30a0eddfa01421641230e555a11cf5 Mon Sep 17 00:00:00 2001 From: Amey Vivek Borade <77625626+Borade07@users.noreply.github.com> Date: Wed, 15 Dec 2021 12:14:50 +0530 Subject: [PATCH] push --- src/index.html | 17 +++++++++++++++++ src/styles.css | 21 +++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 src/index.html create mode 100644 src/styles.css diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..d5fd5a9 --- /dev/null +++ b/src/index.html @@ -0,0 +1,17 @@ + + + + + + + + Vanilla JavaScript App + + + +
+

Vanilla JavaScript App

+
+ + + \ No newline at end of file diff --git a/src/styles.css b/src/styles.css new file mode 100644 index 0000000..0fc6eeb --- /dev/null +++ b/src/styles.css @@ -0,0 +1,21 @@ +* { + font-family: Arial, Helvetica, sans-serif; +} + +html, body { + margin: 0; + border: 0; + padding: 0; + background-color: #fff; +} + +main { + margin: auto; + width: 50%; + padding: 20px; +} + +main > h1 { + text-align: center; + font-size: 3.5em; +} \ No newline at end of file