-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (112 loc) · 5.89 KB
/
index.html
File metadata and controls
127 lines (112 loc) · 5.89 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
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rahie Datta | Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style/styles.css">
<link rel="icon" type="image/x-icon" href="/images/favicon.ico">
</head>
<body>
<header>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark sticky-top">
<div class="container">
<img src="images/logo.png" alt="My Logo" width="50px" height="50px">
<a class="navbar-brand" href="#"> Rahie Datta</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navContent">
<div class="btn-group ms-auto mt-2 mt-sm-0">
<a class="btn btn-primary" href="#top" role="button">Home</a>
<div class="btn-group" role="group">
<button class="btn btn-primary dropdown-toggle" type="button"
data-bs-toggle="dropdown">Resume</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="#objective">Objective</a></li>
<li><a class="dropdown-item" href="#technical-skills">Technical Skills</a></li>
<li><a class="dropdown-item" href="#education">Education</a></li>
<li><a class="dropdown-item" href="#experience">Work Experience</a></li>
<li><a class="dropdown-item" href="#volunteering">Volunteering</a></li>
<li><a class="dropdown-item" href="#projects">Projects</a></li>
</ul>
</div>
<a class="btn btn-primary" href="#contact" role="button">Contact</a>
</div>
</div>
</div>
</nav>
</header>
<header class="bg-primary text-white text-center py-5">
<div class="container" id="name-header">
<img src="images/profile.jpg" alt="Rahie Datta" class="img-fluid rounded mb-3" style="max-width: 200px;">
<h1 class="display-4 font-weight-bold">Rahie Datta</h1>
<p class="lead">Fourth Year Bachelor of Computer Science Student at Carleton University</p>
<a href="https://github.com/rah3/Miscellaneous-W26/blob/main/Job%20Applications/FSWEP%20Application/Resume.pdf"
target="_blank" class="btn btn-primary outline-white" aria-label="Download Resume">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-file-earmark" viewBox="0 0 16 16">
<path
d="M14 4.5V14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2h5.5zm-3 0A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4.5z" />
</svg>
View Full PDF Resume
</a>
</div>
</header>
<main class="container my-4">
<section id="top"></section>
<div class="row g-4 mt-2">
<div class="col-md-6 border-bottom pb-3">
<section id="objective">
<h3 class="fw-bold text-primary">Objective</h3>
<div id="objective-container"></div>
</section>
</div>
<div class="col-md-6 border-bottom border-start-md pb-3">
<section id="education">
<h3 class="fw-bold text-primary">Education</h3>
<div id="education-container"></div>
</section>
</div>
<div class="col-md-6 border-bottom pb-3">
<section id="technical-skills">
<h3 class="fw-bold text-primary">Technical Skills</h3>
<div id="technical-skills-container" class="mt-2"></div>
</section>
</div>
<div class="col-md-6 border-bottom border-start-md pb-3">
<section id="experience">
<h3 class="fw-bold text-primary">Work Experience</h3>
<div id="experience-container"></div>
</section>
</div>
<div class="col-md-6 border-bottom pb-3">
<section id="volunteering">
<h3 class="fw-bold text-primary">Volunteering</h3>
<div id="volunteering-container"></div>
</section>
</div>
<div class="col-md-6 border-bottom border-start-md pb-3">
<section id="projects">
<h3 class="fw-bold text-primary">Projects</h3>
<div id="projects-container"></div>
</section>
</div>
</div>
<section id="contact" class="mt-4">
<h3 class="fw-bold text-primary">Contact</h3>
<div id="contact-container"></div>
</section>
</main>
<button type="button" class="btn btn-primary btn-lg rounded-circle" id="btn-back-to-top"> ↑ </button>
<button type="button" class="btn btn-primary btn-lg rounded-circle" id="btn-go-to-bottom"> ↓ </button>
<footer id="main-footer"></footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="scripts/home.js"></script>
<script src="scripts/resume.js"></script>
<script src="scripts/contact.js"></script>
<script src="scripts/scrollOperations.js"></script>
<script src="scripts/footer.js"></script>
</body>
</html>