-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (50 loc) · 1.54 KB
/
index.html
File metadata and controls
52 lines (50 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>My Portfolio</h1>
<nav>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section id="about">
<h2>About Me</h2>
<p>Hello! My name is <b>K.Srishanth Goud</b>. I am a passionate student learning
web development and modern technologies. I enjoy building creative
websites and solving real-world problems with technology.
</p>
<p> I am especially interested in contributing to open-source programs like
<b>Google Summer of Code (GSoC)</b>. My goal is to improve my development
skills and collaborate with global developer communities while working
on impactful projects.
</p>
</section>
<section id="projects">
<h2>My Projects</h2>
<p>List your projects here.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>Email: srishanth905@gmail.com</p>
<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Submit">
</form>
<span><div class="github" ><a href="https://github.com/srishanth905" target="_blank">GitHub</a>
</section>
<footer>
<p>© 2026 My Portfolio</p>
</footer>
</body>
</html>