-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy patharunpandian.html
68 lines (63 loc) · 1.67 KB
/
arunpandian.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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<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="hero">
<div class="hero-text">
<h1>Welcome to My Portfolio</h1>
<p>Discover my work and projects</p>
<a href="#projects" class="btn">View Projects</a>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>Write a brief introduction about yourself and your skills here.</p>
</div>
</section>
<section id="projects">
<div class="container">
<h2>My Projects</h2>
<div class="project">
<img src="project1.jpg" alt="Project 1">
<h3>Project 1</h3>
<p>Description of project 1.</p>
</div>
<div class="project">
<img src="project2.jpg" alt="Project 2">
<h3>Project 2</h3>
<p>Description of project 2.</p>
</div>
<!-- Add more projects as needed -->
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Me</h2>
<p>Feel free to reach out to me through the following channels:</p>
<ul>
<li>Email: [email protected]</li>
<li>Phone: +1 123-456-7890</li>
<li>LinkedIn: <a href="https://www.linkedin.com/your-profile">Your Profile</a></li>
</ul>
</div>
</section>
<footer>
<div class="container">
<p>© 2023 Your Name. All rights reserved.</p>
</div>
</footer>
</body>
</html>