-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (74 loc) · 2.55 KB
/
index.html
File metadata and controls
95 lines (74 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Farhan | Portfolio</title>
<!-- Linking CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Header Section -->
<header>
<h1>Mohammed Farhanuddin</h1>
<p>Student | Developer | Learner</p>
</header>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>
I am an Electrical and Electronics Engineering (EEE) student with a strong passion for
electronics, coding and emerging AI technologies. I enjoy building real-world projects,
learning new tools and improving my technical skills every day.
</p>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>C++</li>
<li>Python</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<a href="https://mohammed-farhanuddin.github.io/TODO-APP/" target="_blank" style="text-decoration: none; color: inherit;">
<div class="project-card">
<h3>TODO App</h3>
<p>A fully-featured TODO web application with search, sorting, edit, filters and dark mode.</p>
</div>
</a>
<!-- Add more project cards here in future -->
</section>
<section id="contact">
<h2>Contact Information</h2>
<p><strong>Email:</strong> mohammedfarhanuddin789@gmail.com</p>
<p><strong>Phone:</strong> 9141411768</p>
<p><strong>Location:</strong> Bangalore, India</p>
</section>
<!-- Contact Section -->
<section id="social">
<h2>Social Profiles</h2>
<ul>
<li><a href=https://www.linkedin.com/in/mohammed-farhanuddin-664749200/ target="_blank">LinkedIn</a></li>
<li><a href=https://leetcode.com/u/MOHAMMEDFARHANUDDIN/target="blank">LeetCode</a></li>
<li><a href=https://github.com/MOHAMMED-FARHANUDDIN target="_blank">GitHub</a></li>
<li><a href=https://www.instagram.com/fa.rhan_46/ target="_blank">Instagram</a></li>
</ul>
</section>
<!-- Linking JS -->
<script src="script.js"></script>
</body>
</html>