commit a88a88a90f99fbcdb3785e7ee4861063d6be9d52 Author: Eiman AlEmadi Date: Tue Jul 28 15:06:31 2026 +0300 Initial commit: basic web project structure diff --git a/css/style.css b/css/style.css new file mode 100644 index 0000000..63d20f0 --- /dev/null +++ b/css/style.css @@ -0,0 +1,18 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Arial, sans-serif; + display: flex; + justify-content: center; + align-items: center; + min-height: 100vh; + background-color: #f0f0f0; +} + +h1 { + color: #333; +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..d70f45f --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + MyWeb1 + + + +

Welcome to MyWeb1

+ + + diff --git a/js/main.js b/js/main.js new file mode 100644 index 0000000..229163c --- /dev/null +++ b/js/main.js @@ -0,0 +1 @@ +console.log('MyWeb1 loaded');