-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (83 loc) · 3.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Divyam Asthana - Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script defer src="scripts.js"></script>
</head>
<body>
<header>
<div class="container">
<h1>Divyam Asthana</h1>
<p>Frontend Developer | Data Analyst | Java Enthusiast</p>
<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="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about" class="section">
<div class="container">
<h2>About Me</h2>
<p>Hello! I'm Divyam Asthana, a passionate frontend developer with expertise in crafting interactive and user-friendly web interfaces. I also excel in data analytics and have a strong foundation in data structures and algorithms using Java.</p>
</div>
</section>
<section id="projects" class="section">
<div class="container">
<h2>Projects</h2>
<div class="project-list">
<div class="project">
<h3>Interactive Portfolio Website</h3>
<p>An engaging personal portfolio showcasing skills and projects using modern web technologies.</p>
</div>
<div class="project">
<h3>Data Visualization Dashboard</h3>
<p>A dashboard that visualizes complex datasets using JavaScript libraries like D3.js and Chart.js.</p>
</div>
<div class="project">
<h3>Algorithm Visualizer</h3>
<p>A web application for visualizing popular algorithms in Java, aimed at enhancing learning experiences.</p>
</div>
</div>
</div>
</section>
<section id="skills" class="section">
<div class="container">
<h2>Skills</h2>
<ul class="skills-list">
<li>HTML, CSS, JavaScript</li>
<li>React, Angular</li>
<li>D3.js, Chart.js</li>
<li>Java Programming</li>
<li>Data Structures & Algorithms</li>
<li>Data Analytics</li>
</ul>
</div>
</section>
<section id="contact" class="section">
<div class="container">
<h2>Contact Me</h2>
<form id="contact-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit">Send</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Divyam Asthana. All rights reserved.</p>
</div>
</footer>
</body>
</html>