-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (109 loc) · 3.76 KB
/
index.html
File metadata and controls
121 lines (109 loc) · 3.76 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Krishika Vansh | Portfolio</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<h1>Krishika Vansh</h1>
<p>Web Developer | Designer | Open Source Enthusiast</p>
<button id="theme-toggle">Toggle Dark Mode</button>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="contact.html">Contact</a>
<a href="#works">Works</a>
<a href="preview.html">Preview</a>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<div class="about-container">
<img src="image.jpg" alt="Krishika Vansh" class="profile-img">
<p>
Hello! I'm Krishika, a passionate developer who enjoys building clean, user-focused web applications.
I specialize in full-stack development using HTML, CSS, JavaScript, React, Node.js, and MongoDB.
I'm also active in the open-source community and love solving real-world problems through technology.
<a href="https://www.w3schools.com/html/tryit.asp?filename=tryhtml_links_image"><img src="comp.jpg" alt="Know more" style="width:42px;height:42px;"></a>
</p>
</div>
</section>
<section id="iframe">
<h2>Preview</h2>
<div class="iframe-container">
<iframe
src="https://en.wikipedia.org/wiki/Artificial_intelligence"
title="Embedded Preview"
loading="lazy">
</iframe>
</div>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="projects">
<div class="project">
<h3>IoT Smart Waste Bin</h3>
<p>
Built an IoT-based smart bin to monitor waste levels and optimize garbage collection using sensors and real-time alerts.
</p>
</div>
<div class="project">
<h3>Malware Detection Scanner</h3>
<p>
Developed a lightweight scanner to detect malicious PDFs using machine learning and signature analysis.
</p>
</div>
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<div class="skills">
<div class="skill" data-info="I build fast and responsive websites with modern HTML5.">HTML</div>
<div class="skill" data-info="I create beautiful and modern layouts using CSS3, Flexbox, and Grid.">CSS</div>
<div class="skill" data-info="I bring websites to life with interactive and dynamic JavaScript.">JavaScript</div>
<div class="skill" data-info="I develop single-page applications with the React library.">React</div>
</div>
<div id="skill-description-box">
<p>Hover over a skill to learn more.</p>
</section>
<section id="works">
<h2>Work</h2>
<table>
<caption>Project Summary</caption>
<thead>
<tr>
<th>Project Name</th>
<th>Category</th>
<th>Technologies</th>
</tr>
</thead>
<tbody>
<tr>
<td>IoT Smart Waste Bin</td>
<td>IoT</td>
<td>Arduino, Sensors, Node.js</td>
</tr>
<tr>
<td>Malware Detection Scanner</td>
<td>Cybersecurity</td>
<td>Python, ML</td>
</tr>
</tbody>
</table>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: <a href="mailto:krishikavansh20@example.com">krishikavansh20@gmail.com</a></p>
<p>LinkedIn: <a href="https://linkedin.com/in/KrishikaVansh" target="_blank">KrishikaVansh</a></p>
<p>GitHub: <a href="https://github.com/KrishikaVansh" target="_blank">@KrishikaVansh</a></p>
</section>
<footer>
<p>© 2025 Krishika Vansh. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>