-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (102 loc) · 5.17 KB
/
index.html
File metadata and controls
102 lines (102 loc) · 5.17 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
<!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 of Praneet Kumar, a post graduate in need of work experince</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="#">Praneet Kumar</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#hero">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="hero" class="hero">
<div class="container">
<h1>Welcome to my portfolio</h1>
<div class="blur-box">
<p>I'm a postgraduate who’s been learning and exploring software development with the hope of building a career in this field. While I haven’t had any formal work experience yet, I’ve been using this time to improve my understanding and keep learning at my own pace. I’m open to opportunities where I can grow gradually, contribute in whatever way I can, and continue learning through real-world experience.</p>
</div>
</div>
</section>
<section id="about" class="about">
<div class="container">
<h2>About me</h2>
<div class="blur-box">
<p>I'm a postgraduate who’s been learning and exploring software development with the hope of building a career in this field. While I haven’t had any formal work experience yet, I’ve been using this time to improve my understanding and keep learning at my own pace. I’m open to opportunities where I can grow gradually, contribute in whatever way I can, and continue learning through real-world experience.</p>
</div>
<h3>Skills:</h3>
<div class="blur-box">
<ul>
<li>C/C++</li>
<li>MySQL</li>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Bootstrap</li>
</ul>
</div>
</div>
</section>
<section id="portfolio" class="portfolio">
<div class="container">
<h2>My portfolio</h2>
<div class="row">
<div class="col-md-4">
<img src="https://via.placeholder.com/300" alt="">
</div>
<div class="col-md-4">
<img src="https://via.placeholder.com/300" alt="">
</div>
<div class="col-md-4">
<img src="https://via.placeholder.com/300" alt="">
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>Get in touch</h2>
<!-- <div class="blur-box"> -->
<div>
<p>If you're interested in working with me or would like to learn more about my services, please don't hesitate to reach out. I'd be happy to discuss your project and provide a quote.</p>
</div>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button>Send message</button>
</form>
<ul>
<li><a href="#"><i class="bi bi-twitter"></i></a></li>
<li><a href="#"><i class="bi bi-linkedin"></i></a></li>
<li><a href="https://github.com/praneetk96/" target="_blank"><i class="bi bi-github"></i></a></li>
</ul>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>