Skip to content

Commit 5449295

Browse files
committed
Initial Commit
1 parent c0f9463 commit 5449295

File tree

9 files changed

+1299
-2
lines changed

9 files changed

+1299
-2
lines changed

README.md

Lines changed: 108 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,108 @@
1-
# template
2-
A Template Repository for OpenSpringFest (OSF)
1+
# Bihar Culture Landing - Contribution Guide
2+
3+
Welcome to the Bihar Culture Landing project! This website celebrates the rich heritage, vibrant culture, and beautiful traditions of Bihar.
4+
5+
## Project Structure
6+
7+
```
8+
bihar-culture-landing/
9+
10+
├── index.html # Home page (intro + links to other pages)
11+
├── culture.html # Culture & Arts
12+
├── history.html # History & Heritage
13+
├── festivals.html # Festivals & Traditions
14+
├── tourism.html # Travel & Tourism
15+
├── modern.html # Modern Bihar
16+
17+
├── style.css # Global styles
18+
├── script.js # Shared JS
19+
20+
├── assets/ # Images, audio, icons
21+
│ ├── images/
22+
│ ├── audio/
23+
│ └── icons/
24+
25+
├── contributors/ # For translations, stories, etc.
26+
│ ├── stories/
27+
│ ├── recipes/
28+
│ └── translations/
29+
30+
└── README.md # This file
31+
```
32+
33+
## How to Contribute
34+
35+
### 1. Adding Stories
36+
-These are personal or cultural narratives that highlight Bihar’s traditions, folklore, and heritage.
37+
-Could be folk tales, legends, historical accounts, or community memories.
38+
- Place your stories in the `contributors/stories/` directory
39+
- Use markdown format (.md files)
40+
- Include cultural significance and historical context
41+
42+
### 2. Contributing Recipes
43+
-Traditional dishes from Bihar — written in a structured way.
44+
- Add traditional Bihar recipes to `contributors/recipes/`
45+
- Include ingredients, preparation steps, and cultural background
46+
- Use clear formatting and include images if possible
47+
48+
### 3. Translations
49+
- Help translate content into local languages
50+
- Place translations in `contributors/translations/`
51+
- Maintain folder structure similar to main content
52+
53+
### 4. Images and Media
54+
- Add relevant images to `assets/images/`
55+
- Include audio files (folk songs, music) in `assets/audio/`
56+
- Use appropriate file formats and optimize for web
57+
58+
### 5. Icons and Graphics
59+
- Place custom icons in `assets/icons/`
60+
- Ensure icons are consistent with the overall design theme
61+
62+
## Content Guidelines
63+
64+
### What to Include:
65+
- Authentic cultural information
66+
- Historical facts and stories
67+
- Traditional recipes and cooking methods
68+
- Festival celebrations and customs
69+
- Local art forms and crafts
70+
- Music and dance traditions
71+
- Religious and spiritual practices
72+
- Modern developments and achievements
73+
74+
### Quality Standards:
75+
- Verify historical accuracy
76+
- Cite sources when possible
77+
- Use respectful language
78+
- Include diverse perspectives
79+
- Maintain cultural sensitivity
80+
81+
## Technical Guidelines
82+
83+
### File Naming:
84+
- Use lowercase letters
85+
- Separate words with hyphens (kebab-case)
86+
- Use descriptive names
87+
88+
### Code Standards:
89+
- Follow semantic HTML structure
90+
- Use responsive design principles
91+
- Optimize images for web
92+
- Test on multiple devices
93+
94+
## Getting Started
95+
96+
1. Fork or Clone this repository
97+
cd bihar-culture-landing
98+
2. Make your changes in the appropriate directories
99+
3. Test your changes locally
100+
4. Submit a pull request with a clear description
101+
102+
## Contact
103+
104+
For questions or suggestions, please open an issue or contact the maintainers.
105+
106+
---
107+
108+
Thank you for helping preserve and share the beautiful culture of Bihar! 🙏

bihar-culture-landing/culture.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bihar Culture</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<header class="sub-hero">
10+
<h1>Culture & Arts</h1>
11+
</header>
12+
13+
<nav>
14+
<a href="index.html">Home</a>
15+
<a href="culture.html">Culture</a>
16+
<a href="history.html">History</a>
17+
<a href="festivals.html">Festivals</a>
18+
<a href="tourism.html">Tourism</a>
19+
<a href="modern.html">Modern Bihar</a>
20+
</nav>
21+
22+
<main>
23+
<section>
24+
<h2>Madhubani Art</h2>
25+
<p>Famous traditional painting style originating from Mithila region.</p>
26+
<img src="assets/images/madhubani.jpg" alt="Madhubani Art">
27+
</section>
28+
29+
<section>
30+
<h2>Bhojpuri Folk Songs</h2>
31+
<p>Rich oral tradition of songs sung during festivals and weddings.</p>
32+
</section>
33+
34+
<section>
35+
<h2>Bhagalpuri Silk</h2>
36+
<p>Known as ‘Tussar Silk’, handwoven in Bhagalpur, cherished worldwide.</p>
37+
</section>
38+
</main>
39+
40+
<footer>
41+
<p>Contribute more cultural content here!</p>
42+
</footer>
43+
</body>
44+
</html>
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bihar Festivals</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<header class="sub-hero">
10+
<h1>Festivals of Bihar</h1>
11+
</header>
12+
13+
<nav>
14+
<a href="index.html">Home</a>
15+
<a href="culture.html">Culture</a>
16+
<a href="history.html">History</a>
17+
<a href="festivals.html">Festivals</a>
18+
<a href="tourism.html">Tourism</a>
19+
<a href="modern.html">Modern Bihar</a>
20+
</nav>
21+
22+
<main>
23+
<section>
24+
<h2>Chhath Puja</h2>
25+
<p>Dedicated to the Sun God, celebrated with deep devotion.</p>
26+
</section>
27+
28+
<section>
29+
<h2>Sonepur Mela</h2>
30+
<p>The largest cattle fair in Asia, full of tradition and trade.</p>
31+
</section>
32+
33+
<section>
34+
<h2>Sama-Chakeva</h2>
35+
<p>A folk festival in Mithila region celebrating sibling bonds.</p>
36+
</section>
37+
</main>
38+
39+
<footer>
40+
<p>Add more festivals of Bihar here!</p>
41+
</footer>
42+
</body>
43+
</html>

bihar-culture-landing/history.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bihar History</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<header class="sub-hero">
10+
<h1>History & Heritage</h1>
11+
</header>
12+
13+
<nav>
14+
<a href="index.html">Home</a>
15+
<a href="culture.html">Culture</a>
16+
<a href="history.html">History</a>
17+
<a href="festivals.html">Festivals</a>
18+
<a href="tourism.html">Tourism</a>
19+
<a href="modern.html">Modern Bihar</a>
20+
</nav>
21+
22+
<main>
23+
<section>
24+
<h2>Nalanda University</h2>
25+
<p>One of the world’s oldest universities, a great center of learning.</p>
26+
</section>
27+
28+
<section>
29+
<h2>Vikramshila University</h2>
30+
<p>Another renowned ancient seat of Buddhist learning.</p>
31+
</section>
32+
33+
<section>
34+
<h2>Freedom Fighters</h2>
35+
<p>Bihar gave India leaders like Dr. Rajendra Prasad and Kunwar Singh.</p>
36+
</section>
37+
</main>
38+
39+
<footer>
40+
<p>Help us add more historical events and personalities!</p>
41+
</footer>
42+
</body>
43+
</html>

bihar-culture-landing/index.html

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Bihar Culture - Discover the Rich Heritage of Bihar</title>
7+
<link rel="stylesheet" href="style.css">
8+
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.ico">
9+
</head>
10+
<body>
11+
<header>
12+
<div class="header-content">
13+
<h1>बिहार संस्कृति</h1>
14+
<h2>Bihar Culture</h2>
15+
<p class="tagline">Discover the Rich Heritage and Vibrant Culture of Bihar</p>
16+
</div>
17+
</header>
18+
19+
<nav class="main-navigation">
20+
<div class="nav-container">
21+
<a href="index.html" class="nav-link active">Home</a>
22+
<a href="culture.html" class="nav-link">Culture & Arts</a>
23+
<a href="history.html" class="nav-link">History & Heritage</a>
24+
<a href="festivals.html" class="nav-link">Festivals & Traditions</a>
25+
<a href="tourism.html" class="nav-link">Travel & Tourism</a>
26+
<a href="modern.html" class="nav-link">Modern Bihar</a>
27+
</div>
28+
</nav>
29+
30+
<main class="main-content">
31+
<section class="hero-section">
32+
<div class="hero-content">
33+
<h2>Welcome to the Land of Buddha and Mahavira</h2>
34+
<p>Bihar, the birthplace of Buddhism and Jainism, is a treasure trove of ancient wisdom, rich culture, and vibrant traditions. From the sacred Bodhi Tree in Bodh Gaya to the ancient ruins of Nalanda University, Bihar has been the cradle of knowledge and spirituality for centuries.</p>
35+
</div>
36+
</section>
37+
38+
<section class="features-grid">
39+
<div class="feature-card" onclick="window.location.href='culture.html'">
40+
<div class="card-icon">🎨</div>
41+
<h3>Culture & Arts</h3>
42+
<p>Explore the rich artistic heritage including Madhubani paintings, folk music, and traditional crafts that define Bihar's cultural identity.</p>
43+
<span class="explore-link">Explore Culture →</span>
44+
</div>
45+
46+
<div class="feature-card" onclick="window.location.href='history.html'">
47+
<div class="card-icon">🏛️</div>
48+
<h3>History & Heritage</h3>
49+
<p>Journey through ancient empires, from the Mauryan dynasty to the Gupta period, and discover Bihar's pivotal role in Indian history.</p>
50+
<span class="explore-link">Explore History →</span>
51+
</div>
52+
53+
<div class="feature-card" onclick="window.location.href='festivals.html'">
54+
<div class="card-icon">🎭</div>
55+
<h3>Festivals & Traditions</h3>
56+
<p>Celebrate the vibrant festivals like Chhath Puja, Durga Puja, and local traditions that bring communities together.</p>
57+
<span class="explore-link">Explore Festivals →</span>
58+
</div>
59+
60+
<div class="feature-card" onclick="window.location.href='tourism.html'">
61+
<div class="card-icon">🗺️</div>
62+
<h3>Travel & Tourism</h3>
63+
<p>Discover sacred sites, historical monuments, and natural beauty that make Bihar a unique destination for travelers.</p>
64+
<span class="explore-link">Plan Your Visit →</span>
65+
</div>
66+
67+
<div class="feature-card" onclick="window.location.href='modern.html'">
68+
<div class="card-icon">🏙️</div>
69+
<h3>Modern Bihar</h3>
70+
<p>Learn about contemporary developments, educational institutions, and the progressive face of modern Bihar.</p>
71+
<span class="explore-link">Explore Modern Bihar →</span>
72+
</div>
73+
</section>
74+
75+
<section class="highlights-section">
76+
<h2>Bihar Highlights</h2>
77+
<div class="highlights-grid">
78+
<div class="highlight-item">
79+
<h4>🌳 Bodh Gaya</h4>
80+
<p>Where Buddha attained enlightenment</p>
81+
</div>
82+
<div class="highlight-item">
83+
<h4>📚 Nalanda University</h4>
84+
<p>Ancient center of learning</p>
85+
</div>
86+
<div class="highlight-item">
87+
<h4>🎨 Madhubani Art</h4>
88+
<p>UNESCO recognized folk art</p>
89+
</div>
90+
<div class="highlight-item">
91+
<h4>🕉️ Vaishali</h4>
92+
<p>Birthplace of democracy</p>
93+
</div>
94+
<div class="highlight-item">
95+
<h4>🏞️ Rajgir</h4>
96+
<p>Ancient capital of Magadha</p>
97+
</div>
98+
<div class="highlight-item">
99+
<h4>🌾 Chhath Puja</h4>
100+
<p>Sacred sun worship festival</p>
101+
</div>
102+
</div>
103+
</section>
104+
105+
<section class="call-to-action">
106+
<div class="cta-content">
107+
<h2>Contribute to Bihar Culture</h2>
108+
<p>Help us preserve and share Bihar's rich heritage by contributing stories, recipes, translations, and more.</p>
109+
<a href="contributors/" class="cta-button">Join as Contributor</a>
110+
</div>
111+
</section>
112+
</main>
113+
114+
<footer>
115+
<div class="footer-content">
116+
<p>&copy; 2025 Bihar Culture Landing. Celebrating the heritage of Bihar.</p>
117+
<p>Made with ❤️ for preserving Bihar's cultural legacy</p>
118+
</div>
119+
</footer>
120+
121+
<script src="script.js"></script>
122+
</body>
123+
</html>

0 commit comments

Comments
 (0)