-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathindex.html
80 lines (77 loc) · 2.46 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"
/>
<link rel="stylesheet" href="main.css" />
<title>HTML Portfolio</title>
</head>
<body>
<header>
<h1>Software Developer Portfolio</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<p>
I'm a passionate software developer with expertise in web development,
mobile app development, and software engineering. I have a strong
background in programming languages such as JavaScript, Python, Java,
and C++, and I enjoy solving complex problems and creating innovative
solutions.
</p>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<h3>Portfolio Website</h3>
<p>
A responsive portfolio website showcasing my skills, projects, and
experience. Built using HTML, CSS, and JavaScript.
</p>
</div>
<div class="project">
<h3>E-commerce Website</h3>
<p>
An e-commerce platform developed using React.js for the frontend and
Node.js with Express.js for the backend. Integrated with payment
gateways and user authentication.
</p>
</div>
<div class="project">
<h3>Mobile App</h3>
<p>
A mobile application built for iOS and Android using React Native. The
app helps users track their fitness goals and provides personalized
workout plans.
</p>
</div>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>
Feel free to reach out to me for collaboration opportunities, project
inquiries, or just to say hello!
</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required /><br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" required /><br />
<label for="message">Message:</label><br />
<textarea id="message" name="message" rows="4" required></textarea
><br />
<button type="submit">Send Message</button>
</form>
</section>
</body>
</html>