-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
94 lines (86 loc) · 3.06 KB
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My Portfolio</title>
<link rel="stylesheet" href="port.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<h1>Your Name</h1>
<p>Your Tagline or Brief Introduction</p>
</div>
</header>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>About Me</h2>
<div class="about-content">
<div class="about-image">
<img src="your-photo.jpg" alt="Your Image">
</div>
<div class="about-text">
<p>Hi, I'm [Your Name], a web developer with expertise in HTML, CSS, and JavaScript. I have experience building modern, responsive websites and web applications. My goal is to create elegant, user-friendly interfaces.</p>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Responsive Web Design</li>
<li>Version Control (Git)</li>
<li>Web Development Tools</li>
</ul>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="projects">
<div class="container">
<h2>Projects</h2>
<div class="project-list">
<div class="project">
<img src="project1.jpg" alt="Project 1">
<h3>Project Title 1</h3>
<p>Project description goes here. Talk about the tools used, the challenges faced, and the result.</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<h3>Project Title 2</h3>
<p>Project description goes here. Highlight the main features and benefits of the project.</p>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="resume">
<div class="container">
<h2>Resume</h2>
<a href="resume.pdf" download class="cta-button">Download My Resume</a>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact</h2>
<p>Email: [email protected]</p>
<p>Phone: (123) 456-7890</p>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="container">
<p>© 2024 Your Name. All rights reserved.</p>
</div>
</footer>
</body>
</html>