-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp2.html
73 lines (69 loc) · 3.05 KB
/
p2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="p2.css">
</head>
<body>
<header>
<nav>
<!-- Navigating through the page -->
<div><a href="#aboutMe">About Me</a></div>
<div><a href="#skills">Skills</a></div>
<div><a href="#projects">My Projects</a></div>
<div><a href="#contact">Contact Me</a></div>
</nav>
</header>
<main>
<!-- About me section -->
<div class="aboutMe" id="aboutMe">
<h1>ABOUT ME</h1>
<p class="aboutme_p">I am K.Siddarth, currently a 1st year CSE student studying at <a
href="https://www.iitbbs.ac.in/" style="color:rgb(5, 94, 85)">IIT BBS</a>.
<br>
I also play Table Tennis, Basketball and also watch anime.I have just started my programming journey so i only
know basics of few languages.
</p>
</div>
<img src="my pic.jpg" alt="Mypic" class="mypic">
<!-- languages -->
<div class="skills" id="skills">
<h1>Languages</h1>
<p class="skills_p">I am currently exploring the fields of C.P, WebDev and ML. These are some languages that I
have learnt till basics.</p>
<ul class="lang_img">
<li><a href="https://www.w3schools.com/cpp/cpp_intro.asp"><img src="cpp.png" alt="cpp" class="logo"></a></li>
<li><a href="https://www.w3schools.com/c/c_intro.php?external_link=true"><img src="c.png" alt="c"
class="logo"></a></li>
<li><a href="https://www.w3schools.com/html/"><img src="html.png" alt="html" class="logo"></a></li>
<li><a href="https://www.w3schools.com/css/"><img src="css.png" alt="css" class="logo"></a></li>
<li><a href="https://www.w3schools.com/js/"><img src="Js.png" alt="Js" class="logo"></a></li>
</ul>
</div>
<!-- Projects -->
<div class="projects" id="projects">
<h1>Projects</h1>
<div class="projects_body">
<p class="projects_p p1"><a href="https://k-siddarth.github.io/Guessing-Game/g.html"><img src="guess.png" alt="project 1" class="projects_img"></a><br>This is a simple guessing game that I made</p>
<p class="projects_p p2"><a href="https://k-siddarth.github.io/Dice-Game/G.html"><img src="dice.png" alt="project 2" class="projects_img"></a><br>This is a simple dice game that I made</p>
<p class="projects_p p3"><a href="https://k-siddarth.github.io/Student/s.html"><img src="student.png" alt="project 3" class="projects_img"></a><br>This is a very simple project I made for students</p>
</div>
<button class="right">→</button>
<button class="left">←</button>
</div>
</main>
<footer>
<div class="contact" id="contact">
<h1>Contact Me</h1>
<div class="contact_p">
<p><a href="#">Instagram</a></p>
<p><a href="#">GitHub</a></p>
<p><a href="#">Mail</a></p>
</div>
</div>
</footer>
<script src="p2.js"></script>
</body>
</html>