-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (83 loc) · 2.5 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/faebaf54f6.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="intro">
<div class="hi">
<nav>
<h2 class="it"><i class="fa-solid fa-user"></i>Portfolio</h2>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="#" class="button">Resume</a>
</nav>
<div class="content">
<h2>Hello I'm</h2>
<h1>Purushottama Kavya</h1>
<p>-Aspiring FullStack Developer-</p><br>
<button type="button"><u>Hire Me</u></button>
</div>
</div>
</section>
<section class="about">
<h1><u>About me</u></h1>
<div class="ab">
<img src="./home/kavya/Downloads/Screenshot.png">
<div class="ab-text">
<h2>Web Developer</h2>
<p>I am currently an undergraduate pursuing my Btech in computer science. I had done various projects on web-development and in other fields.
Including web development i am also interested in competative programming, DSA, Datascience etc. In order to aim for full stack development.
</p><br>
<button type="button">More info</button>
</div>
</div>
</section>
<div class="fun">
<h1><u>Skills</u></h1>
<div class="skill">
<div class="skill1">
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>Bootstrap</li>
<li>Web Design</li>
</ul>
</div>
<div class="skill2">
<ul>
<li>C</li>
<li>C++</li>
<li>Java</li>
<li>Database Management System</li>
<li>Competitive Programming</li>
</ul>
</div>
</div>
<div class="just">
<p><b>Worked on platforms: </b>Codechef: 2-star, Hackerrank(sql): 3-star, geeksforgeeks, Leetcode</p>
</div>
</div>
<div class="contact">
<h1><u>Contact Me</u></h1>
<p>For further details contact me</p>
<div class="icons">
<i class="fa-solid fa-phone"></i>
<i class="fa-solid fa-envelope"></i>
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-github"></i>
</div>
</div>
</body>
</html>