diff --git a/README.html b/README.html new file mode 100644 index 0000000..6155729 --- /dev/null +++ b/README.html @@ -0,0 +1,30 @@ + + + + + + + ION606.com + + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index ebac6a3..7c96bc2 100644 --- a/index.html +++ b/index.html @@ -1,16 +1,83 @@ + ION606.com - + + + + - - + + + +
+
+

Welcome to my Personal Website!

+

My (user)name's ION606, feel free to looks at my stuffs

+ + +
+
+ + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..f90d39b --- /dev/null +++ b/style.css @@ -0,0 +1,55 @@ +.overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.5); + display: flex; + justify-content: center; + align-items: center; +} + +.content { + text-align: center; + color: white; +} + +.content h1 { + font-size: 2rem; + margin-bottom: 1rem; +} + +.content p { + font-size: 1.2rem; + margin-bottom: 2rem; +} + +.content button { + padding: 0.5rem 1rem; + font-size: 1rem; + background-color: #ff00ff; + /* Pink color */ + color: white; + border: none; + border-radius: 5px; + cursor: pointer; + margin-right: 1rem; +} + +.content button:hover { + background-color: #800080; + /* Purple color */ +} + +iframe { + border: none; +} + +body, +canvas { + margin: 0; + padding: 0; + overflow: hidden; + background-color: black; +} \ No newline at end of file