-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (77 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anand Kushwaha - Personal 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">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header class="header">
<div class="container">
<h1>Anand Kushwaha</h1>
<p>B.Tech CSE 2nd Year Student | Learning DSA in Java</p>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about" class="section about">
<div class="container">
<h2>About Me</h2>
<p>Hi, I'm Anand , 2nd year B.Tech CSE student, currently learning Data Structures and Algorithms (DSA) in Java. I'm passionate about coding, solving problems, and continuously improving my skills to become a proficient developer.</p>
</div>
</section>
<section id="skills" class="section skills">
<div class="container">
<h2>Skills</h2>
<div class="skill-list">
<div class="skill-item">
<i class="fas fa-code"></i>
<h3>Web Development</h3>
<p>HTML, CSS</p>
</div>
<div class="skill-item">
<i class="fas fa-laptop-code"></i>
<h3>Programming</h3>
<p>C, Java</p>
</div>
</div>
</div>
</section>
<section id="portfolio" class="section portfolio">
<div class="container">
<h2>Portfolio</h2>
<div class="portfolio-gallery">
<div class="portfolio-item">
<img src="project1.jpg" alt="ATM Machine Project">
<h3>ATM Machine (OOP)</h3>
<p>A simple ATM machine simulation in Java using OOP concepts such as methods classes and loops.</p>
</div>
</div>
</div>
</section>
<section id="contact" class="section contact">
<div class="container">
</form>
<p>You can reach me at: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2024 Anand Kushwaha. All Rights Reserved.</p>
<div class="social-links">
<a href="https://www.instagram.com/_.anand_xd/" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/Anandkushwaha96" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
</footer>
</body>
</html>