-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (82 loc) · 3.28 KB
/
Copy pathindex.html
File metadata and controls
92 lines (82 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ilavarasu Thevar - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="container">
<h1>Ilavarasu Thevar</h1>
<p>Passionate MERN Stack Developer</p>
</div>
</header>
<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="#resume">Resume</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="about">
<div class="container">
<h2>About Me</h2>
<div class="about-content">
<img src="your-photo.jpg" alt="Ilavarasu Thevar">
<p>I am a passionate MERN Stack developer with a strong interest in building e-commerce and college websites. With experience in creating dynamic and responsive web applications, I strive to deliver exceptional user experiences.</p>
</div>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>MongoDB</li>
<li>Express.js</li>
<li>React.js</li>
<li>Node.js</li>
<li>JavaScript</li>
<li>HTML & CSS</li>
</ul>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<div class="project">
<h3>E-commerce Website</h3>
<img src="project-ecommerce.jpg" alt="E-commerce Website">
<p>Developed a full-featured e-commerce website using the MERN stack. The website includes product listings, a shopping cart, user authentication, and an admin dashboard for managing products and orders.</p>
</div>
<div class="project">
<h3>College Website</h3>
<img src="project-college.jpg" alt="College Website">
<p>Created a responsive college website with a focus on providing information about courses, faculty, events, and campus facilities. Implemented a content management system to allow easy updates and maintenance.</p>
</div>
</div>
</section>
<section id="resume">
<div class="container">
<h2>Resume</h2>
<a href="resume.pdf" download>Download My Resume</a>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<p>Email: <a href="mailto:rasuthevar01@gmail.com">arasuthevar01@gmail.com</a></p>
<p>Phone: <a href="tel:+1234567890">(123) 456-7890</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Ilavarasu Thevar. All rights reserved.</p>
</div>
</footer>
</body>
</html>