forked from vishal02527/My-Strength-Shree-Krishna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner.html
162 lines (141 loc) · 4.95 KB
/
partner.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Partner with Experts</title>
<style>
/* CSS Styles */
body {
font-family: Arial, sans-serif;
background-color: var(--primary-color); /* Light blue background */
color: #2e4a7e; /* Dark blue text */
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #e3f2fd; /* Light background color */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border: 2px solid #ffeb3b; /* Yellow border */
}
h1, h2 {
text-align: center;
color: #3f51b5; /* Krishna's blue */
}
h1 {
font-size: 2em;
margin-bottom: 20px;
}
h2 {
font-size: 1.5em;
margin-top: 30px;
}
p {
line-height: 1.6;
margin: 10px 0;
}
ul {
list-style: none;
margin: 20px 0;
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
footer {
text-align: center;
margin-top: 20px;
color: #3f51b5; /* Krishna's blue */
font-size: 0.9em;
}
.home-button {
display: block;
background-color: #4a90e2; /* Blue button */
color: white; /* White text */
border: none;
border-radius: 5px;
padding: 10px 15px;
cursor: pointer;
text-align: center;
margin: 20px auto; /* Center the button */
width: 150px; /* Fixed width */
transition: background-color 0.3s;
}
.home-button:hover {
background-color: #357ab7; /* Darker blue on hover */
}
#icon {
width: 30px;
cursor: pointer;
position: absolute;
right: 50px;
top: 50px;
}
:root {
--primary-color: #f0f8ff;
}
.dark-theme {
--primary-color: #474444;
}
.section {
margin-top: 30px;
}
.section img {
max-width: 100%;
border-radius: 10px;
margin-top: 20px;
}
</style>
</head>
<body>
<img src="images/moon.png" id="icon">
<div class="container">
<h1>Partner with Experts</h1>
<p>Welcome to our "Partner with Experts" page, where we collaborate with leading figures in Krishna's teachings, spirituality, and devotional practices. Our goal is to provide you with valuable insights, resources, and guidance on your spiritual journey.</p>
<div class="section">
<h2>Our Collaborators</h2>
<ul>
<li>Swami Vishwananda: A renowned spiritual teacher and expert in Bhakti Yoga.</li>
<li>Dr. Radhakrishnan: A scholar on Vedic scriptures and their applications in modern life.</li>
<li>Mataji Shanti: A practitioner of meditation and mindfulness techniques rooted in Krishna consciousness.</li>
<li>Pundit Krishna Das: An expert in traditional rituals and ceremonies associated with Krishna's teachings.</li>
</ul>
</div>
<div class="section">
<h2>Get Involved</h2>
<p>If you are an expert in Krishna's teachings or have insights to share, we invite you to partner with us. Together, we can enrich our community and help others on their spiritual paths.</p>
</div>
<div class="section">
<h2>Upcoming Events</h2>
<p>Join us for our upcoming events and workshops:</p>
<ul>
<li>Bhakti Yoga Retreat - June 15-20, 2023</li>
<li>Vedic Scriptures Seminar - July 10, 2023</li>
<li>Meditation and Mindfulness Workshop - August 5, 2023</li>
<li>Traditional Rituals and Ceremonies - September 12, 2023</li>
</ul>
</div>
<div class="section">
<h2>Gallery</h2>
<p>Explore our gallery of past events and collaborations:</p>
<img src="images/event1.jpg" alt="Event 1">
<img src="images/event2.jpg" alt="Event 2">
</div>
<button class="home-button" onclick="window.location.href='index.html'">Home</button>
<footer>
©<span id="cyear"></span> Shree Krishna - My Strength. All rights reserved.
</footer>
<script>
window.addEventListener('load', () => {
const year = document.getElementById('cyear');
year.innerHTML = new Date().getFullYear();
});
</script>
</div>
<script src="script.js"></script>
</body>
</html>