Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions Motivational-quote-wall/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Motivational Quote Wall</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>🌟 Motivational Quote Wall</h1>
<p>A collection of quotes for <span class="highlight">Work</span>, <span class="highlight">Study</span>, <span class="highlight">Focus</span>, and <span class="highlight">Break Time</span></p>
</header>

<main>
<!-- Work Section -->
<section id="work">
<h2>💼 Work</h2>
<div class="quote-card">
<p>"Choose a job you love, and you will never have to work a day in your life."</p>
<span>- Confucius</span>
</div>
<div class="quote-card">
<p>"Don’t watch the clock; do what it does. Keep going."</p>
<span>- Sam Levenson</span>
</div>
</section>

<!-- Study Section -->
<section id="study">
<h2>📚 Study</h2>
<div class="quote-card">
<p>"An investment in knowledge pays the best interest."</p>
<span>- Benjamin Franklin</span>
</div>
<div class="quote-card">
<p>"The beautiful thing about learning is that no one can take it away from you."</p>
<span>- B.B. King</span>
</div>
</section>

<!-- Focus Section -->
<section id="focus">
<h2>🎯 Focus</h2>
<div class="quote-card">
<p>"Starve your distractions, feed your focus."</p>
<span>- Unknown</span>
</div>
<div class="quote-card">
<p>"It’s not that I’m so smart, it’s just that I stay with problems longer."</p>
<span>- Albert Einstein</span>
</div>
</section>

<!-- Break Time Section -->
<section id="break">
<h2>☕ Break Time</h2>
<div class="quote-card">
<p>"Almost everything will work again if you unplug it for a few minutes… including you."</p>
<span>- Anne Lamott</span>
</div>
<div class="quote-card">
<p>"Take rest; a field that has rested gives a bountiful crop."</p>
<span>- Ovid</span>
</div>
</section>
</main>
</body>
</html>
84 changes: 84 additions & 0 deletions Motivational-quote-wall/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
/* General Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: #e0f7fa; /* Soft overall background color */
color: #333;
line-height: 1.6;
padding: 20px;
}

/* Header */
header {
text-align: center;
margin-bottom: 2rem;
}

header h1 {
font-size: 2.5rem;
color: #444;
margin-bottom: 0.5rem;
}

header p {
font-size: 1.2rem;
color: #666;
}

.highlight {
font-weight: bold;
color: #ff6b6b;
}

/* Sections */
section {
margin: 2rem auto;
max-width: 800px;
}

section h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #222;
}

/* Quote Cards */
.quote-card {
padding: 1.2rem;
margin-bottom: 1rem;
border-radius: 10px;
color: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
}

/* Different background colors for variety */
.quote-card:nth-child(1) { background-color: #ff6b6b; } /* Red-ish */
.quote-card:nth-child(2) { background-color: #ffb74d; } /* Orange */
.quote-card:nth-child(3) { background-color: #4db6ac; } /* Teal */
.quote-card:nth-child(4) { background-color: #64b5f6; } /* Blue */
.quote-card:nth-child(5) { background-color: #ba68c8; } /* Purple */
.quote-card:nth-child(6) { background-color: #81c784; } /* Green */
.quote-card:nth-child(7) { background-color: #f06292; } /* Pink */
.quote-card:nth-child(8) { background-color: #ffd54f; } /* Yellow */

/* Hover effect */
.quote-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.quote-card p {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}

.quote-card span {
font-size: 0.9rem;
color: #f0f0f0;
}