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; +}