-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (114 loc) · 6.01 KB
/
index.html
File metadata and controls
120 lines (114 loc) · 6.01 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Website</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">My Profile</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="bg-primary text-white text-center py-5">
<div class="container">
<h1>Bedabrat Barma</h1>
<p class="lead">A Brief Overview</p>
</div>
</header>
<section id="about" class="py-5">
<div class="container text-center">
<h2>About Me</h2>
<img src="pfp.jpeg" alt="Profile Picture" class="rounded-circle mb-3" style="width: 150px; height: 150px; object-fit: cover;">
<p class="lead">Hi there! I am Bedabrat Barma, a B.Tech student in Mechanical Engineering at IIT Guwahati. I have multiple areas of interests, which include science, sports, creative writing, web-developmemnt, machine learning and astronomy. Throughout the years, I've worked on various technical and non-technical projects such as creating this basic profile website, astronomical research on Martian Core, writing and publishing a book, poems and stories. I am also a State-level table tennis player, and passionate about various other sports as well. My poem blog : <a href="https://symphonum.blogspot.com" target="_blank">Symphonum</a></p>
</div>
</section>
<section id="projects" class="bg-light py-5">
<div class="container">
<h2 class="text-center">Projects and Achievements</h2>
<div class="row mt-4">
<div class="col-md-3">
<div class="card">
<img src="writer.jpg" class="card-img-top" alt="Project 3">
<div class="card-body">
<h5 class="card-title">Academic</h5>
<p class="card-text">Secured 99.65%ile in JEE Main 2024, and AIR 3793 in JEE Advanced 2024. Participated in INMO Camp, 2024.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="web developer.jpg" class="card-img-top" alt="Project 1">
<div class="card-body">
<h5 class="card-title">Web-development</h5>
<p class="card-text">Successfully created and hosted a basic profile website using html, css, js and bootstrap.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="pen.jpg" class="card-img-top" alt="Project 2">
<div class="card-body">
<h5 class="card-title">Creative Writing</h5>
<p class="card-text">Wrote and published a book titled 'The Wailing Corners', created a blog site for publishing poems.</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card">
<img src="table tennis.jpg" class="card-img-top" alt="Project 4">
<div class="card-body">
<h5 class="card-title">Sports</h5>
<p class="card-text">Gold medallist in Table Tennis at SPIRIT 2024, Bronze medallist at Inter IIT Sports Meet 2024.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="py-5">
<div class="container text-center">
<h2>Contact Me</h2>
<p class="lead">Feel free to reach out via the form below.</p>
<form class="row g-3 justify-content-center">
<div class="col-md-6">
<input type="text" class="form-control" placeholder="Your Name" required>
</div>
<div class="col-md-6">
<input type="email" class="form-control" placeholder="Your Email" required>
</div>
<div class="col-12">
<textarea class="form-control" rows="4" placeholder="Your Message" required></textarea>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Send</button>
</div>
</form>
</div>
</section>
<footer class="bg-dark text-white text-center py-3">
<p class="mb-0">© 2025 Bedabrat Barma. All Rights Reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>