-
Notifications
You must be signed in to change notification settings - Fork 0
/
hobbies.html
100 lines (97 loc) · 3.66 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hobbies</title>
<link rel="stylesheet" href="./head.css">
<link rel="stylesheet" href="hobbies.css">
<link rel="stylesheet" href="footer.css" />
<style>
body {
background-color: black;
}
</style>
</head>
<body>
<div id="header">
<ul>
<li>
<a href="index.html" target="_self" rel="noopener noreferrer"
>Home</a
>
</li>
<li>
<a href="./Education.html" target="_self" rel="noopener noreferrer"
>Education</a
>
</li>
<li>
<a href="./skills.html" target="_self" rel="noopener noreferrer"
>Skills</a
>
</li>
<li>
<a href="./hobbies.html" target="_self" rel="noopener noreferrer"
>Hobbies</a
>
</li>
</ul>
</div>
<div class="container">
<div class="card" >
<div class="face face1">
<div class="content">
<!-- <i class="fab fa-windows"></i> -->
<h3>Dance</h3>
</div>
</div>
<div class="face face2" id="card0">
<div class="content">
<p>In the dance, I find freedom, self-discovery, and an unbridled connection to the music that moves me. The stage is my sanctuary, and with every performance, I strive to share the intensity of my passion, leaving an indelible mark on the hearts of those who witness the poetry in motion that is my dance.</p>
</div>
</div>
</div>
<div class="card" id="card1">
<div class="face face1">
<div class="content">
<!-- <i class="fab fa-android"></i> -->
<!-- <img src="./reading.png" alt=""> -->
<h3>Reading Books</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>With each book, I embark on a new odyssey, forging connections with characters who become companions, and narratives that leave an indelible mark on my soul. My love for reading is not merely a pastime; it's an insatiable hunger for knowledge, a passion that fuels my spirit, and a testament to the profound joy found in the embrace of a good book.</p>
</div>
</div>
</div>
<div class="card" id="card2">
<div class="face face1">
<div class="content">
<!-- <i class="fab fa-apple"></i> -->
<h3>Arts</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>In the realm of arts and crafts, I am an alchemist, transforming ordinary moments into extraordinary memories. Whether it's the vibrant burst of a watercolor palette or the gentle precision of crafting delicate forms, each project is a love letter to the beauty that resides in the act of creation.</p>
</div>
</div>
</div>
</div>
<div id="footer2">
<ul>
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
<li><i class="fab fa-linkedin-in"></i></li>
<li><i class="fab fa-youtube"></i></li>
</ul>
</div>
<script
src="https://kit.fontawesome.com/f287482c6a.js"
crossorigin="anonymous"
></script>
</body>
</html>