From 6a667a68a4b5ae22a3022ce7eb151646ef521bc0 Mon Sep 17 00:00:00 2001 From: akbar-moghadam Date: Sat, 18 Dec 2021 23:57:01 +0330 Subject: [PATCH] add html and css files --- hello.html | 16 ++++++++++++++++ style.css | 25 +++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 hello.html create mode 100644 style.css diff --git a/hello.html b/hello.html new file mode 100644 index 0000000..919ad5d --- /dev/null +++ b/hello.html @@ -0,0 +1,16 @@ + + + + + + + + Document + + +
+

Hello World

+
+ + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..205259e --- /dev/null +++ b/style.css @@ -0,0 +1,25 @@ +*{ + padding: 0; + margin: 0; + box-sizing: border-box; +} +body{ + display: flex; + align-items: center; + justify-content: center; + width: 100%; + height: 100vh; +} +div{ + display: flex; + align-items: center; + justify-content: center; + width: 100%; + height: 100%; + background-color: azure; +} +h1{ + + + color: burlywood; +}