forked from Stephenmathew03/Online_Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
39 lines (37 loc) · 1.86 KB
/
project.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<style>
body{
background-color: aliceblue;
}
.git{
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<svg class="bi me-2" width="40" height="32"><use xlink:href="#bootstrap"></use></svg>
<span class="fs-4">My Resume</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="./index.html" class="nav-link active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="./about.html" class="nav-link">About Me</a></li>
<li class="nav-item"><a href="./skills.html" class="nav-link">My Skills</a></li>
<li class="nav-item"><a href="./project.html" class="nav-link">My Projects</a></li>
<li class="nav-item"><a href="./contact.html" class="nav-link">Contact Me</a></li>
</ul>
</header>
</div>
<a class="git" href="https://github.com/Stephenmathew03">GitHub</a>
</body>
</html>