-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (117 loc) · 4.33 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<h1>John Doe</h1>
<p>Software Developer</p>
<ul>
<li><a href="mailto:johndoe@example.com">johndoe@example.com</a></li>
<li><a href="https://www.linkedin.com/in/johndoe/">LinkedIn</a></li>
</ul>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>I'm a software developer with a passion for building innovative solutions. I have experience in developing web applications using HTML, CSS, JavaScript, and various frameworks.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>
<h3>Project 1</h3>
<p>Description of Project 1</p>
<img src="project1.png" alt="Project 1 screenshot">
<ul>
<li>Technologies used: HTML, CSS, JavaScript</li>
<li><a href="https://github.com/johndoe/project1">GitHub repository</a></li>
</ul>
</li>
<li>
<h3>Project 2</h3>
<p>Description of Project 2</p>
<img src="project2.png" alt="Project 2 screenshot">
<ul>
<li>Technologies used: React, Node.js, MongoDB</li>
<li><a href="https://github.com/johndoe/project2">GitHub repository</a></li>
</ul>
</li>
<!-- Add more projects here -->
</ul>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>HTML/CSS</li>
<li>JavaScript</li>
<li>React</li>
<li>Node.js</li>
<li>MongoDB</li>
<!-- Add more skills here -->
</ul>
</section>
<section id="experience">
<h2>Experience</h2>
<ul>
<li>
<h3>Software Developer, ABC Company</h3>
<p>January 2020 - Present</p>
<ul>
<li>Developed multiple web applications using React and Node.js</li>
<li>Collaborated with cross-functional teams to deliver projects on time</li>
</ul>
</li>
<!-- Add more experience here -->
</ul>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li>
<h3>Bachelor of Science in Computer Science, XYZ University</h3>
<p>2016 - 2020</p>
</li>
<!-- Add more education here -->
</ul>
</section>
<section id="testimonials">
<h2>Testimonials</h2>
<ul>
<li>
<p>"John is an exceptional developer with a keen eye for detail. He's a pleasure to work with!"</p>
<p>- Jane Doe, ABC Company</p>
</li>
<!-- Add more testimonials here -->
</ul>
</section>
<section id="contact">
<h2>Get in Touch</h2>
<p>Want to discuss a project or just say hi? Send me a message!</p>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<script src="script.js"></script>
</body>
</html>