From c0187c7306f916417c96e7ca15f65b61fca94687 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Wed, 13 Sep 2023 17:53:01 +0530 Subject: Initial HTML and CSS files created --- index.html | 38 ++++++++++++++++++++++++++++++++++++++ style.css | 11 +++++++++++ 2 files changed, 49 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..329ed78 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + + i + Web Calculator + + +
+
+ 0 +
+
+ + + + + + + + + + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..473ecc6 --- /dev/null +++ b/style.css @@ -0,0 +1,11 @@ +{ + margin: 0; + padding: 0; + box-sizing: border-box; + font-familt: Arial, Helvetica, sans-serif; +} +html, body{ + background-color: black; + min-width: 100%; + width: 100%; +} \ No newline at end of file -- cgit v1.2.3