-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (68 loc) · 2.46 KB
/
index.html
File metadata and controls
73 lines (68 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Krish Kumar Singh - Portfolio</title>
<link rel="stylesheet" href="portfolio.css">
</head>
<body>
<header>
<h1>Krish Kumar Singh</h1>
<nav>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<div class="container">
<h2>About Me</h2>
<p>Hello! I'm Krish Kumar Singh, a first-year, first-semester student passionate about programming. I'm building my skills in HTML, CSS, and C/C++ to create meaningful projects and solutions.</p>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>C Programming</li>
<li>C++ Programming</li>
</ul>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<div class="project">
<h3>Pixel Ops(Pointing robo web)</h3>
<p>Full functional web with pointer blink function.</p>
<a href="http://127.0.0.1:3000/Web.html?serverWindowId=8dfebfd5-85fa-4cb6-9440-27f01016a877" target="_blank">View Code</a>
</div>
<div class="project">
<h3>PW-IOI WEB PAGE</h3>
<p>PW IOI -Student engagement web with Leaderbord and more..</p>
<a href="http://127.0.0.1:3000/PWioi2.html?serverWindowId=b63827f3-7ec6-49f9-b008-7366a38ac77e" target="_blank">View Code</a>
</div>
<div class="project">
<h3>Float Data Type Example</h3>
<p>A C program demonstrating float data types.</p>
<a href="C Programming/floatdatatype.c" target="_blank">View Code</a>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<p>Email: krish.singh.sot25@pwioi.com</p>
<p>Linkedln:Krish kumar singh</p>
<p>Instagram: Krish_.singhh</p>
</div>
</section>
<footer>
<p>© 2025 Krish Kumar Singh. All rights reserved.</p>
</footer>
</body>
</html>