-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
63 lines (61 loc) · 1.8 KB
/
Copy pathabout.html
File metadata and controls
63 lines (61 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Bootstrap Static HTML Project</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
display: flex;
}
.sidebar {
width: 200px;
height: 100vh;
position: fixed;
top: 0;
left: 0;
background-color: #f8f9fa;
padding-top: 20px;
}
.content {
margin-left: 200px;
padding: 20px;
width: 100%;
background-image: url('assets/right-bg.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-height: 100vh;
}
</style>
</head>
<body>
<!-- Sidebar -->
<div class="sidebar">
<div class="text-center mb-3">
<img src="assets/my-profile-img.jpg" alt="Profile Image" class="rounded-circle" width="100" height="100">
<div class="mt-2">
<a href="https://www.linkedin.com/in/your-profile" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/linkedin.svg" alt="LinkedIn" width="24" height="24">
</a>
</div>
</div>
<h4 class="text-center">Aby Koshy</h4>
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html">About</a>
</li>
</ul>
</div>
<!-- Main Content -->
<div class="content">
<h1>About Page</h1>
<button class="btn btn-secondary mt-3">Learn More</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>