forked from vishal02527/My-Strength-Shree-Krishna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
partner.html
97 lines (85 loc) · 3.17 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
<!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: #f0f8ff; /* 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 {
text-align: center;
color: #3f51b5; /* Krishna's blue */
font-size: 2em;
margin-bottom: 20px;
}
p {
line-height: 1.6;
margin: 10px 0;
}
ul {
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 */
}
</style>
</head>
<body>
<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>
<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>
<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>
<button class="home-button" onclick="window.location.href='index.html'">Home</button>
<footer>
© Shree Krishna - My Strength. All rights reserved.
</footer>
</div>
</body>
</html>