From cb92f931705a5ee9b4c048fe0826bd9cfd11d9e1 Mon Sep 17 00:00:00 2001 From: zikra-shaikh Date: Tue, 3 Mar 2026 19:52:40 +0530 Subject: [PATCH] portfolio --- index.html | 39 +++++++++++++++++++++++++++++++++++++++ style.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 91 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..c53f0d7 --- /dev/null +++ b/index.html @@ -0,0 +1,39 @@ + + + + My Portfolio + + + + + +
+

Zikra Shaikh

+

learning full stack developer

+
+ + +
+ My Photo +
+ + + + + +
+

Contact Me

+
+ + + + +
+
+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..a715e96 --- /dev/null +++ b/style.css @@ -0,0 +1,52 @@ +body { + font-family: Arial, sans-serif; + text-align: center; + background-color: #f4f4f4; +} + +header { + background-color: white; + color: rgb(6, 83, 60); + padding: 20px; +} + +.profile img { + width: 150px; + border-radius: 50%; + margin: 20px; +} + +.links a { + display: inline-block; + margin: 10px; + padding: 10px 20px; + background-color: #0077b5; + color: white; + text-decoration: none; + border-radius: 5px; +} + +.links a:hover { + background-color: #5a4c42; +} + +.contact form { + display: flex; + flex-direction: column; + width: 300px; + margin: auto; +} + +.contact input, +.contact textarea { + margin: 10px 0; + padding: 10px; +} + +button { + padding: 10px; + background-color: rgb(46, 110, 50); + color: white; + border: none; + cursor: pointer; +} \ No newline at end of file