-
Notifications
You must be signed in to change notification settings - Fork 0
/
website.html
96 lines (91 loc) · 3.41 KB
/
website.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dhinakaran_T Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="logo">Dhinakaran T</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#blog">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h1>Crafting Digital Experiences with Code</h1>
<p>Web Developer | Designer | Problem Solver</p>
<a href="#portfolio" class="cta-btn">See My Work</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="about">
<div class="container">
<div class="profile">
<img src="profile.jpg" alt="Profile Picture">
<h2>About Me</h2>
<p>Hello! I'm a passionate web developer with expertise in building modern, responsive websites. My skills include HTML, CSS, JavaScript, and more.</p>
</div>
<div class="skills">
<h2>Skills</h2>
<div class="skill-set">
<span class="skill">HTML5</span>
<span class="skill">CSS3</span>
<span class="skill">JavaScript</span>
<span class="skill">Responsive Design</span>
<span class="skill">Java fundamentals</span>
<!-- Add more skills as needed -->
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="portfolio">
<div class="container">
<h2>My Work</h2>
<div class="portfolio-items">
<div class="portfolio-item">
<img src="project1.jpg" alt="Project 1">
<h3>Project 1</h3>
<p>A brief description of the project.</p>
<a href="#">View Project</a>
</div>
<!-- Repeat for more projects -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact Me</h2>
<p>Email: [email protected]</p>
<p>Phone: +919361468184</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/dhinakaran-t-493308259" class="social-icon" target="_blank">LinkedIn</a>
<a href="#" class="social-icon">GitHub</a>
<a href="#" class="social-icon">Twitter</a>
<a href="https://leetcode.com/DHINAKARAN_Thillainathan/" class="social-icon" target="_blank">LeetCode</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2024 DHINAKARAN_T. All rights reserved.</p>
<a href="#home" class="back-to-top">Back to Top</a>
</div>
</footer>
</body>
</html>