From b6c75e561db1977cbb01c88c904e7ec6b2678e6d Mon Sep 17 00:00:00 2001 From: merasool <157970061+merasool@users.noreply.github.com> Date: Sat, 5 Oct 2024 10:05:30 +0000 Subject: [PATCH] my portfolio --- src/index.html | 64 +++++++++++++++++++++- src/main.css | 141 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 204 insertions(+), 1 deletion(-) diff --git a/src/index.html b/src/index.html index 6a7c812fa..61b824cd4 100644 --- a/src/index.html +++ b/src/index.html @@ -7,8 +7,70 @@ HTML Portfolio +
+
+

Shaik Rasool

+
+ shaik-rasool +
+ +
+
- Welcome to the HTML Portfolio Project +
+
+

About Me

+

I am a student with experience in web development (HTML, CSS, JavaScript) and C programming. Passionate about playing badminton and online games, I have a strong background in developing responsive websites and writing efficient code.

+
+
+ +
+
+

Skills

+
+
+ +
+
+ +
+
+

Projects

+
+

Project One

+

I developed a personal project that allows users to check the weather and air quality by inputting their longitude and latitude coordinates. This project utilizes APIs to fetch real-time weather data and air quality indices, providing users with up-to-date environmental information. The technologies used include HTML, CSS, JavaScript, and API integration. The outcome was a fully functional web application that enhances user awareness of environmental conditions in their specific location.

+ View Project +
+
+

Project Two

+

Description of your project, its technologies, and outcomes.

+ View Project +
+
+
+ +
+
+

Contact

+

If you'd like to get in touch, feel free to reach out via email or connect with me on LinkedIn.

+ mail + + + + +
+
diff --git a/src/main.css b/src/main.css index e69de29bb..ee17b69e9 100644 --- a/src/main.css +++ b/src/main.css @@ -0,0 +1,141 @@ + +body { + font-family: Arial, sans-serif; + color: #333; + line-height: 1.6; + margin: 0; + padding: 0; +} + +.container { + width: 80%; + margin: 0 auto; + +} + +.effect :hover{ + color: #ff6347; +} + + +header { + background-color: #333; + color: #fff; + padding: 10px 0; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5em; +} + +nav ul { + list-style: none; + padding: 0; +} + +nav ul li { + display: inline; + margin: 0 10px; +} + +nav ul li a { + color: #fff; + text-decoration: none; + font-size: 1.1em; +} + +nav ul li a:hover { + color: #ff6347; +} + +section { + padding: 20px 0; + border-bottom: 1px solid #ddd; +} + +section h2 { + font-size: 2em; + margin-bottom: 20px; +} + + +.about-section p { + font-size: 1.2em; +} + + +.skills-section ul { + list-style: none; + padding: 0; +} + +.skills-section ul li { + background-color: #f4f4f4; + margin-bottom: 10px; + padding: 10px; + font-size: 1.1em; +} + + +.projects-section .project { + margin-bottom: 20px; +} + +.projects-section .project h3 { + font-size: 1.5em; + margin-bottom: 10px; +} + +.projects-section .btn { + display: inline-block; + background-color: #333; + color: #fff; + padding: 10px 20px; + text-decoration: none; + border-radius: 5px; +} + +.projects-section .btn:hover { + background-color: #ff6347; +} + + +.contact-section p { + font-size: 1.2em; +} + +.contact-section .btn { + display: inline-block; + background-color: #333; + color: #fff; + padding: 10px 10px; + text-decoration: none; + border-radius: 5px; + margin-right: 5px; +} + +.contact-section .btn:hover { + background-color: #ff6347; +} + + +footer { + background-color: #333; + color: #fff; + text-align: center; + padding: 10px 0; + margin-top: 10px; +} + +footer p { + margin: 0; +} +.image{ + align-items: right; + justify-content: right; + + +} +