-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbies.html
More file actions
121 lines (109 loc) · 4.88 KB
/
hobbies.html
File metadata and controls
121 lines (109 loc) · 4.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Rakesh Kumar Mandal - Hobbies & Interests">
<title>Hobbies & Interests | Rakesh Kumar Mandal</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&family=Ubuntu:wght@400;500;700&display=swap" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">RKM</a>
<ul class="nav-menu" id="navMenu">
<li class="nav-item">
<a href="index.html#home" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="index.html#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="index.html#projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="hobbies.html" class="nav-link active">Hobbies</a>
</li>
<li class="nav-item">
<a href="index.html#contact" class="nav-link">Contact</a>
</li>
</ul>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<span class="hamburger"></span>
</button>
</div>
</nav>
<!-- Hobbies Hero Section -->
<section class="hobbies-hero">
<div class="container">
<h1 class="page-title">Hobbies & Interests</h1>
<p class="page-subtitle">Beyond the code, here's what I love to do</p>
</div>
</section>
<!-- Hobbies Grid -->
<section class="hobbies-section">
<div class="container">
<div class="hobbies-grid">
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-book"></i>
</div>
<h3 class="hobby-title">Reading</h3>
<p class="hobby-description">I enjoy reading books on technology, science fiction, and personal development. Always looking to expand my knowledge.</p>
</div>
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-music-note-beamed"></i>
</div>
<h3 class="hobby-title">Music</h3>
<p class="hobby-description">Listening to various genres of music helps me relax and stay focused during coding sessions.</p>
</div>
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-camera"></i>
</div>
<h3 class="hobby-title">Photography</h3>
<p class="hobby-description">Capturing moments and exploring creative photography in my free time.</p>
</div>
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-bicycle"></i>
</div>
<h3 class="hobby-title">Cycling</h3>
<p class="hobby-description">I love cycling as a way to stay active and explore new places.</p>
</div>
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-lightbulb"></i>
</div>
<h3 class="hobby-title">Learning New Tech</h3>
<p class="hobby-description">Constantly exploring emerging technologies and experimenting with new frameworks and tools.</p>
</div>
<div class="hobby-card">
<div class="hobby-icon">
<i class="bi bi-controller"></i>
</div>
<h3 class="hobby-title">Gaming</h3>
<p class="hobby-description">Enjoy strategy games and puzzle-solving games that challenge the mind.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© 2025 Rakesh Kumar Mandal. All rights reserved.</p>
</div>
</footer>
<!-- Custom JavaScript -->
<script src="js/script.js"></script>
</body>
</html>