-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhow to play.html
131 lines (113 loc) · 4.64 KB
/
how to play.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<html lang="en">
<head>
<meta charset="UTF-8"></meta>
<meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>
<title>Our Team</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet"></link>
<style>
.team-members {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.team-member {
width: 30%;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
.team-member-image {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 10px;
object-fit: cover;
}
/* Additional CSS for side-by-side layout */
@media (max-width: 768px) {
.team-member {
width: 80%;
margin: 0 auto 20px;
}
}
<style>
/* Additional CSS with customized colors */
.team-member {
/* ... existing styles ... */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
background-color: #f9f9f9; /* Custom background color for team member cards */
}
.team-member:hover {
transform: translateY(-5px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
background-color: #ffffff; /* Custom background color for hovered team member cards */
}
.team-member-info {
/* ... existing styles ... */
text-align: center;
color: #333; /* Custom text color */
}
.team-member h3 {
margin-top: 10px;
font-size: 1.2rem;
color: #222; /* Custom header text color */
}
.team-member p {
margin: 5px 0;
font-size: 0.9rem;
color: #777; /* Custom paragraph text color */
}
.social-icons {
/* ... existing styles ... */
margin-top: 10px;
}
.social-icons a {
/* ... existing styles ... */
margin: 0 5px;
font-size: 1.2rem;
color: #555; /* Custom icon color */
}
</style>
</head>
<body>
<div class="post-inner-area">
<h1 class="entry-title"></h1>
<div class="post-body entry-content" id="postBody">
<section id="team">
<h2>How to play madal </h2>
<space>
</space>
<h3>Use your computer keyboard to play the Nepali madal:</h3>
<h3> - White keys are played with the corresponding alphabetical keys (a, s, d, f, etc.).</h3>
<h3> - Black keys are played with the corresponding alphabetical keys (w, e, t, y, etc.).</h3>
<h3> - Adjust the volume using the provided slider.</h3>
<h3> - Show or hide the keys using the checkbox.</h3>
</h3>
<div class="team-members">
<div class="team-member">
<img alt="Team Member 1" class="team-member-image" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjAMRsIQNMNarTddve4k7WvjvivWu8Uv6Rw5lpXNAipyA58ZX2QQoihS-voHeYgdR2khOGDKnaMP1t_kRiOLO0axEXZDGkPF1lhkzw-pC5C5ajiYByeqePlT92pp8_IiKtGic22ogZRQnvb3Stxw2oYlB1iFOoeRSNy2E7HF1w05_P9uxVH_zcg0JyVH6XG/s320/20240127_081109.png" />
<div class="team-member-info">
<h3>PR CHAPAGAIN</h3>
<p>Founder & CEO</p>
<p>pharshucg@gmail.com</p>
<a href="https://www.prchapagain.com.np" rel="noopener noreferrer" target="_blank">
<i class="fas fa-globe"></i> Website
</a>
<div class="social-icons">
<a href="https://www.facebook.com/prchapagain" target="_blank"><i class="fab fa-facebook"></i></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/prchapagain" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- Add more team members here -->
</div>
</section>
</div>
</div>
</body>
</html>