-
Notifications
You must be signed in to change notification settings - Fork 578
Open
Description
<title>Vighyan Private Quiz: S. N. Bose & Science Facts</title>
<style>
/* Basic Reset and Variables */
:root {
--primary-color: #3f51b5; /* Indigo/Blue for the main theme */
--secondary-color: #ff9800; /* Amber for CTAs */
--text-color: #333;
--light-bg: #f5f5f5;
--dark-bg: #212121;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif; /* Simplified font for mobile compatibility */
color: var(--text-color);
line-height: 1.6;
background-color: #fff;
}
/* Container for Centering */
.container {
width: 95%; /* Increased width for mobile screens */
max-width: 800px;
margin: 0 auto;
padding: 20px 0;
}
/* Header and Navigation */
header {
background-color: var(--dark-bg);
color: white;
padding: 10px 0;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header h1 {
font-size: 1.6em;
text-align: center;
}
nav {
text-align: center;
padding-top: 10px;
}
nav a {
color: white;
text-decoration: none;
margin: 0 5px;
padding: 6px 10px;
border-radius: 4px;
display: inline-block;
font-size: 0.9em;
}
.cta-button {
background-color: var(--secondary-color);
color: var(--dark-bg);
font-weight: bold;
}
/* Hero Section */
.hero {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 60px 0;
}
.hero h2 {
font-size: 2em;
margin-bottom: 10px;
}
.hero p {
font-size: 1.1em;
margin-bottom: 30px;
}
.cta-large {
display: inline-block;
background-color: var(--secondary-color);
color: var(--dark-bg);
padding: 12px 25px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
font-size: 1em;
}
/* Content Sections */
.content-section {
padding: 40px 0;
border-bottom: 1px solid #eee;
}
.content-section h3 {
font-size: 1.6em;
color: var(--primary-color);
margin-bottom: 15px;
border-left: 5px solid var(--secondary-color);
padding-left: 10px;
}
.section-description {
font-style: italic;
margin-bottom: 20px;
}
.content-section h4 {
margin-top: 20px;
margin-bottom: 8px;
color: #555;
}
.content-section ul {
list-style: disc;
margin-left: 30px;
}
.alt-background {
background-color: var(--light-bg);
}
.fact-list span {
display: inline-block;
background-color: var(--primary-color);
color: white;
padding: 6px 12px;
border-radius: 15px;
margin: 4px;
font-size: 0.8em;
}
/* Quiz Section */
.quiz-section {
text-align: center;
padding: 50px 0;
background-color: #e8eaf6;
}
.quiz-section h2 {
font-size: 2em;
color: var(--dark-bg);
}
.quiz-summary {
background-color: #fff;
border: 2px solid var(--primary-color);
padding: 15px;
margin: 15px auto;
width: 100%;
border-radius: 8px;
font-weight: 700;
}
.quiz-placeholder {
margin-top: 20px;
padding: 30px;
border: 1px dashed #999;
background-color: #fff;
border-radius: 8px;
}
.quiz-placeholder button {
background-color: #cccccc;
color: #666;
padding: 10px 20px;
border: none;
cursor: not-allowed;
margin-top: 15px;
border-radius: 4px;
font-size: 1em;
}
/* Footer */
footer {
background-color: var(--dark-bg);
color: #aaa;
text-align: center;
padding: 15px 0;
font-size: 0.8em;
}
</style>
<header>
<div class="container">
<h1>Vighyan Private Quiz</h1>
<nav>
<a href="#home">Home</a>
<a href="#bose">S. N. Bose (40M)</a>
<a href="#science">Facts (60M)</a>
<a href="#quiz" class="cta-button">Quiz!</a>
</nav>
</div>
</header>
<main>
<section id="home" class="hero">
<div class="container">
<h2>Celebrating Science & Knowledge</h2>
<p>Test your intellect on the revolutionary work of **Satyendra Nath Bose** and a wide range of **Amazing Facts of Science**.</p>
<a href="#quiz" class="cta-large">Take the 100-Mark Challenge!</a>
</div>
</section>
<section id="bose" class="content-section">
<div class="container">
<h3>⚛️ Section A: Satyendra Nath Bose (40 Marks)</h3>
<p class="section-description">Delve into the life and monumental contributions of the Indian theoretical physicist who shaped quantum mechanics.</p>
<h4>Key Areas of Study:</h4>
<ul>
<li>**Bose-Einstein Statistics:** The statistical framework for **bosons** (particles named after him).</li>
<li>**Bose-Einstein Condensate (BEC):** The prediction of the fifth state of matter.</li>
<li>His correspondence with Albert Einstein.</li>
</ul>
</div>
</section>
<section id="science" class="content-section alt-background">
<div class="container">
<h3>🔬 Section B: Amazing Facts of Science (60 Marks)</h3>
<p class="section-description">A journey through diverse scientific trivia, covering physics, biology, chemistry, and astronomy.</p>
<h4>Topics Include:</h4>
<div class="fact-list">
<span>Space & Astronomy</span>
<span>Human Physiology</span>
<span>Chemical Properties</span>
<span>Geology & Earth Science</span>
<span>Zoology & Biology</span>
</div>
</div>
</section>
<section id="quiz" class="quiz-section">
<div class="container">
<h2>Vighyan Private Quiz: Assessment</h2>
<div class="quiz-summary">
<p><strong>Total Marks: 100</strong></p>
<p>Section A: 40 Questions | Section B: 60 Questions</p>
</div>
<div class="quiz-placeholder">
<p>The interactive 100-question quiz interface goes here.</p>
<p>A login/registration is required to track scores for this **Private Quiz**.</p>
<button disabled>Login to Start Quiz</button>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Organized by Purushotham | © 2025 Vighyan Private Quiz.</p>
</div>
</footer>
Mad-creater872Mad-creater872Mad-creater872Mad-creater872Mad-creater872Mad-creater872Mad-creater872Mad-creater872
Metadata
Metadata
Assignees
Labels
No labels