|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <title>Farhan | Portfolio</title> |
| 8 | + |
| 9 | + <!-- Linking CSS --> |
| 10 | + <link rel="stylesheet" href="style.css"> |
| 11 | +</head> |
| 12 | + |
| 13 | +<body> |
| 14 | + <nav> |
| 15 | + <ul> |
| 16 | + <li><a href="#about">About</a></li> |
| 17 | + <li><a href="#skills">Skills</a></li> |
| 18 | + <li><a href="#projects">Projects</a></li> |
| 19 | + <li><a href="#contact">Contact</a></li> |
| 20 | + </ul> |
| 21 | +</nav> |
| 22 | + |
| 23 | + |
| 24 | + <!-- Header Section --> |
| 25 | + <header> |
| 26 | + <h1>Mohammed Farhanuddin</h1> |
| 27 | + <p>Student | Developer | Learner</p> |
| 28 | + </header> |
| 29 | + |
| 30 | + <!-- About Section --> |
| 31 | + <section id="about"> |
| 32 | + <h2>About Me</h2> |
| 33 | + <p> |
| 34 | +I am an Electrical and Electronics Engineering (EEE) student with a strong passion for |
| 35 | +electronics, coding, and emerging AI technologies. I enjoy building real-world projects, |
| 36 | +learning new tools, and improving my technical skills every day. |
| 37 | +</p> |
| 38 | + |
| 39 | + </section> |
| 40 | + |
| 41 | + <!-- Skills Section --> |
| 42 | + <section id="skills"> |
| 43 | + <h2>Skills</h2> |
| 44 | + <ul> |
| 45 | + <li>HTML</li> |
| 46 | + <li>CSS</li> |
| 47 | + <li>JavaScript</li> |
| 48 | + <li>C++</li> |
| 49 | + <li>Python</li> |
| 50 | + </ul> |
| 51 | + </section> |
| 52 | + |
| 53 | + <!-- Projects Section --> |
| 54 | + <section id="projects"> |
| 55 | + <h2>Projects</h2> |
| 56 | + |
| 57 | + <div class="project-card"> |
| 58 | + <h3>Portfolio Website</h3> |
| 59 | + <p>A clean and responsive portfolio website to showcase my skills, projects, and achievements.</p> |
| 60 | + </div> |
| 61 | + |
| 62 | + <div class="project-card"> |
| 63 | + <h3>TODO App</h3> |
| 64 | + <p>Upcoming: A simple task manager app using C++/Python.</p> |
| 65 | + </div> |
| 66 | + |
| 67 | + <div class="project-card"> |
| 68 | + <h3>Weather App</h3> |
| 69 | + <p>Upcoming: A weather forecasting app using API integration.</p> |
| 70 | + </div> |
| 71 | + |
| 72 | + <!-- Add more project cards here in future --> |
| 73 | +</section> |
| 74 | + |
| 75 | +<section id="contact"> |
| 76 | + <h2>Contact Information</h2> |
| 77 | + <p><strong>Email:</strong> mohammedfarhanuddin789@gmail.com</p> |
| 78 | + <p><strong>Phone:</strong> 9141411768</p> |
| 79 | + <p><strong>Location:</strong> Bangalore, India</p> |
| 80 | +</section> |
| 81 | + |
| 82 | + |
| 83 | + |
| 84 | + <!-- Contact Section --> |
| 85 | + <section id="social"> |
| 86 | + <h2>Social Profiles</h2> |
| 87 | + <ul> |
| 88 | + <li><a href="https://www.linkedin.com/in/mohammed-farhanuddin-664749200/" target="_blank">LinkedIn</a></li> |
| 89 | + <li><a href="https://leetcode.com/u/MOHAMMEDFARHANUDDIN/"target="blank">LeetCode</a></li> |
| 90 | + <li><a href="https://github.com/MOHAMMED-FARHANUDDIN" target="_blank">GitHub</a></li> |
| 91 | + <li><a href="https://www.instagram.com/fa.rhan_46/" target="_blank">Instagram</a></li> |
| 92 | + </ul> |
| 93 | +</section> |
| 94 | + |
| 95 | + |
| 96 | + <!-- Linking JS --> |
| 97 | + <script src="script.js"></script> |
| 98 | +</body> |
| 99 | + |
| 100 | +</html> |
0 commit comments