-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobbies.html
85 lines (76 loc) · 4.17 KB
/
hobbies.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Hobbies</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body class="bg-dark text-white">
<!-- Header -->
<header class="text-center py-5" style="background-color: #d99c0a;">
<div class="container">
<h1>My Hobbies</h1>
<p>Discover my passions and interests outside of work!</p>
</div>
</header>
<!-- Hobbies Section -->
<section class="py-5">
<div class="container">
<div class="row">
<!-- Hobby 1: Dance -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card bg-dark text-white shadow-lg">
<img src="dance2.jpg" class="card-img-top" alt="Dancing">
<div class="card-body">
<h5 class="card-title">Dancing</h5>
<p class="card-text">I love to dance and am an active member of my college dance club. I participate in cultural fests and competitions, showcasing my passion for this art form.</p>
</div>
</div>
</div>
<!-- Hobby 2: Doodling and Digital Art -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card bg-dark text-white shadow-lg">
<img src="https://res.cloudinary.com/dfl4ipfsp/image/upload/v1733048865/doodle_jbe3o3.jpg" class="card-img-top" alt="Doodling and Digital Art">
<div class="card-body">
<h5 class="card-title">Doodling and Digital Art</h5>
<p class="card-text">In my free time, I enjoy doodling and creating digital art. It allows me to express my creativity and explore new design ideas.</p>
</div>
</div>
</div>
<!-- Hobby 3: Cafe Hopping -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card bg-dark text-white shadow-lg">
<img src="https://res.cloudinary.com/dfl4ipfsp/image/upload/v1733049414/cafe_rf4w05.jpg" class="card-img-top" alt="Cafe Hopping">
<div class="card-body">
<h5 class="card-title">Cafe Hopping</h5>
<p class="card-text">Exploring new cafes and trying out different cuisines is one of my favorite pastimes. I love discovering hidden gems in the city.</p>
</div>
</div>
</div>
<!-- Hobby 4: Video Editing -->
<div class="col-md-6 col-lg-4 mb-4">
<div class="card bg-dark text-white shadow-lg">
<img src="video.jpg" class="card-img-top" alt="Video Editing">
<div class="card-body">
<h5 class="card-title">Video Editing</h5>
<p class="card-text">I enjoy editing videos, whether it's for personal projects or fun. Creating engaging content through video storytelling is something I truly enjoy.</p>
</div>
</div>
</div>
</div>
</div>
<div class="text-center ">
<a href="index.html" class="btn-link">Back to Portfolio</a>
</div>
</section>
<!-- Footer -->
<footer class="text-center py-3" style="background-color: #d99c0a;">
<p>© 2024 My Blog Portfolio | Built with 💻 and ❤️</p>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>