From a963e8ac65b16f2167764716892f255899c0a9ae Mon Sep 17 00:00:00 2001 From: mansi066 Date: Fri, 10 Jan 2025 19:35:36 +0530 Subject: [PATCH 1/3] Add content --- Principle of Economics/course.css | 343 +++++++++++++++++ .../principleofeconomics.html | 358 ++++++++++++++++++ Principle of Economics/watchvideo1.html | 304 +++++++++++++++ Principle of Economics/watchvideo2.html | 304 +++++++++++++++ Principle of Economics/watchvideo3.html | 304 +++++++++++++++ Principle of Economics/watchvideo4.html | 303 +++++++++++++++ Principle of Economics/watchvideo5.html | 303 +++++++++++++++ Principle of Economics/watchvideo6.html | 304 +++++++++++++++ navigateToPages/services.html | 2 +- 9 files changed, 2524 insertions(+), 1 deletion(-) create mode 100644 Principle of Economics/course.css create mode 100644 Principle of Economics/principleofeconomics.html create mode 100644 Principle of Economics/watchvideo1.html create mode 100644 Principle of Economics/watchvideo2.html create mode 100644 Principle of Economics/watchvideo3.html create mode 100644 Principle of Economics/watchvideo4.html create mode 100644 Principle of Economics/watchvideo5.html create mode 100644 Principle of Economics/watchvideo6.html diff --git a/Principle of Economics/course.css b/Principle of Economics/course.css new file mode 100644 index 0000000..726c57c --- /dev/null +++ b/Principle of Economics/course.css @@ -0,0 +1,343 @@ +@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap'); +:root{ + --tw-gradient-from: #4caf50; + --tw-gradient-to: #ffc107 ; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); + --tw-gradient-from: #4caf50; + --tw-gradient-to: #ffc107 ; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); + } + +html{ + font-size: 62.5%; + overflow-x: hidden; + scroll-padding-top: 7rem; + scroll-behavior: smooth; +} +body{ + background-image: url('../img/New\ Background.jpeg'); +} +body.theme-dark{ + background-image: linear-gradient(to right ,var(--tw-gradient-stops)); +} +.heading + { + font-size: 4rem; + font-weight: 800; + text-transform: capitalize; +} + + +.playlist .row{ + display: flex; + align-items: center; + gap: 2.5rem; + flex-wrap: wrap; + padding:2rem; + background-color: #e9e4e4; +} +.theme-dark .playlist .row{ + background-color: rgb(55 65 81/1); + color:white; +} +.playlist .row .col{ + flex: 1 1 40rem; +} + +.playlist .row .col .save-list button{ + font-size: 2rem; + border-radius: .5rem; + background-color: whitesmoke; + padding: 1.2rem 2.5rem; + cursor: pointer; + margin-bottom: 2rem; +} +.playlist .row .col .save-list button i{ + color: black; + margin-right: 1rem; +} + +.playlist .row .col .save-list button span{ + color: black; +} +.playlist .row .col .save-list button:hover{ + background-color: black; +} +.playlist .row .col .save-list button:hover i{ + color:white; +} +.playlist .row .col .save-list button:hover span{ + color: white; +} + +.playlist .row .col .thumb{ + position: relative; + height: 30rem; +} + +.playlist .row .col .thumb span{ + position: absolute; + top: 1rem;left: 1rem; + border-radius: .5rem; + padding: 0.5rem 1.5rem; + font-size: 2rem; + color: #fff; + background-color:rgba(0,0,0,0.3); +} + +.playlist .row .col .thumb img{ + width: 100%; + height: 100%; + border-radius: .5rem; + object-fit: cover; +} + +.playlist .row .col .tutor{ + display: flex; + align-items: center; + gap: 1.7rem; +} +.playlist .row .col .tutor img{ + height: 7rem; + width: 7rem; + border-radius: 50%; + object-fit: cover; +} +.playlist .row .col .tutor h3{ + font-size: 2rem; + color: black; + margin-bottom: .2rem; +} +.playlist .row .col .tutor span{ + color:black; + font-size: 1.5rem; +} + +.playlist .row .col .details{ + padding-top: 1.5rem; +} +.playlist .row .col .details h3{ + font-size: 3rem; + color: green; +} + +.playlist .row .col .details p{ + padding: 1rem 0; + line-height: 2; + color: black; + font-size: 1.7rem; +} +.theme-dark .playlist .row .col .details p{ + color:white; +} + +.playlist .row .col .details .date{ + font-size: 1.7rem; + padding-top: .5rem; +} +.playlist .row .col .details .date i{ + color: black; + margin-right: 1rem; +} +.playlist .row .col .details .date span{ + color:black +} + +.video-container .box-container{ + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 1.5rem; + align-items: flex-start; + justify-content: center; +} + +.video-container .box-container .box{ + position: relative; + border-radius: .5rem; + padding: 2rem; + background-color: white; +} + +.video-container .box-container .box img{ + height: 20rem; + width: 100%; + border-radius: .5rem; + object-fit: cover; +} + +.video-container .box-container .box i{ + position: absolute; + top: 2rem; left: 2rem; right: 2rem; + height: 20rem; + background-color: rgba(0,0,0,0.3); + display: flex; + align-items: center; + justify-content: center; + font-size: 4rem; + color: #fff; + border-radius: 0.5rem; + display: none; +} + +.video-container .box-container .box:hover i{ + display: flex; +} + +.video-container .box-container .box h3{ + font-size: 2rem; + color: #000; + margin-top: 1rem; +} + +.video-container .box-container .box:hover h3{ + color:black; +} + +.watch-video .video-details{ + background-color: white; + padding: 2rem; +} + +.watch-video .video-details .video{ + width: 100%; + border-radius: 0.5rem; +} +.watch-video .video-details .title{ + font-size: 2rem; + color: black; + padding: 1.5rem 0; +} + +.watch-video .video-details .info{ + display: flex; + gap: 2rem; + padding-bottom: 1.5rem; + border-bottom: #000; + +} +.watch-video .video-details .info p{ + font-size: 1.6rem; + font-weight: 600; +} + +.watch-video .video-details .info p i{ + margin-right: 1rem; + color: black; +} +.watch-video .video-details .info p span{ + color: black; +} +.watch-video .video-details .tutor{ + padding: 2rem 0; + display: flex; + align-items: center; + gap: 2rem; +} + +.watch-video .video-details .tutor img{ + height: 7rem; + width: 7rem; + border-radius: 50%; + object-fit: cover; +} + +.watch-video .video-details .tutor h3{ + font-size: 2rem; + color: #000; + margin-bottom: 0.2rem; +} + +.watch-video .video-details .tutor span{ + color: black; + font-size: 1.5rem; +} + +.watch-video .video-details .flex{ + display: flex; + align-items: center; + gap: 1.5rem; + justify-content: space-between; +} + +.watch-video .video-details .flex a{ + margin-top: 0; +} + +.watch-video .video-details .flex button{ + background-color:white; + cursor: pointer; + padding: 1rem 2.5rem; + font-size: 2rem; + border-radius: .5rem; +} + +.watch-video .video-details .flex button{ + color: #000; + margin-right: 1rem; +} + +.watch-video .video-details .flex button span{ + color:black; +} + +.watch-video .video-details .flex button:hover{ + background-color: black; +} + +.watch-video .video-details .flex button:hover i{ + color: white; +} + +.watch-video .video-details .flex button:hover span{ + color: white; +} + +.watch-video .video-details .description{ + padding-top: 2rem; +} + +.watch-video .video-details .description p{ + line-height: 1.5; + font-size: 1.7rem; + color: black; + white-space: pre-line; +} + +.theme-dark .playlist .row .col .tutor h3{ + color: white; +} +.theme-dark .playlist .row .col .details .date span { + color:white; +} +.theme-dark .playlist .row .col .details .date i { + color:white; +} +.theme-dark .playlist .row .col .save-list button{ + background: #ffc107; +} +.theme-dark .watch-video .video-details{ + background: rgb(55 65 81/1); +} + +.theme-dark .watch-video .video-details .tutor h3 { + color: white; +} +.theme-dark .watch-video .video-details .info p span{ + color:white; +} +.theme-dark .watch-video .video-details .info p { + color:white; +} +.theme-dark .watch-video .video-details .info p i { + color: #fff; +} +.theme-dark .watch-video .video-details .info p span { + color: #fff; +} +.theme-dark .watch-video .video-details .description p{ + color: white; +} +.theme-dark .watch-video .video-details .flex button { + background: #ffc107; +} \ No newline at end of file diff --git a/Principle of Economics/principleofeconomics.html b/Principle of Economics/principleofeconomics.html new file mode 100644 index 0000000..655fc0a --- /dev/null +++ b/Principle of Economics/principleofeconomics.html @@ -0,0 +1,358 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ +
+ +

Course Details

+
+
+
+ +
+
+ 6 videos + thumb +
+
+
+
+ tutor +
+

John Deo

+
+
+ +
+

Complete Principle of Economics tutorial

+ +

The principle of economics is a fundamental concept that underpins the study of how individuals, businesses, and societies make choices to allocate their limited resources. At its core, economics is concerned with the production, distribution, and consumption of goods and services.

+
+ 24-04-2024 +
+
+
+
+ + +
+ + + + +
+

playlist videos

+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo1.html b/Principle of Economics/watchvideo1.html new file mode 100644 index 0000000..c67d3fb --- /dev/null +++ b/Principle of Economics/watchvideo1.html @@ -0,0 +1,304 @@ + + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ +
+ +
+ +

Principle of Economics (part 01)

+
+

22-04-2024

+

45 likes

+
+
+ +
+

john deo

+ +
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo2.html b/Principle of Economics/watchvideo2.html new file mode 100644 index 0000000..bf6d679 --- /dev/null +++ b/Principle of Economics/watchvideo2.html @@ -0,0 +1,304 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Principle of Economics (part 02)

+
+

30-04-2024

+

45 likes

+
+
+ +
+

john deo

+ +
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo3.html b/Principle of Economics/watchvideo3.html new file mode 100644 index 0000000..824ea02 --- /dev/null +++ b/Principle of Economics/watchvideo3.html @@ -0,0 +1,304 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Principle of Economics (part 03)

+
+

22-05-2024

+

45 likes

+
+
+ +
+

john deo

+ +
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo4.html b/Principle of Economics/watchvideo4.html new file mode 100644 index 0000000..5a73215 --- /dev/null +++ b/Principle of Economics/watchvideo4.html @@ -0,0 +1,303 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Principle of Economics (part 04)

+
+

22-06-2024

+

40 likes

+
+
+ +
+

john deo

+
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo5.html b/Principle of Economics/watchvideo5.html new file mode 100644 index 0000000..c64f4bd --- /dev/null +++ b/Principle of Economics/watchvideo5.html @@ -0,0 +1,303 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Principle of Economics (part 05)

+
+

23-05-2024

+

45 likes

+
+
+ +
+

john deo

+
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Principle of Economics/watchvideo6.html b/Principle of Economics/watchvideo6.html new file mode 100644 index 0000000..9b5f267 --- /dev/null +++ b/Principle of Economics/watchvideo6.html @@ -0,0 +1,304 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Principle of Economics (part 06)

+
+

22-06-2024

+

45 likes

+
+
+ +
+

john deo

+ developer +
+
+
+ view playlist + +
+
+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.

+
+
+ +
+ + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/navigateToPages/services.html b/navigateToPages/services.html index be793d3..1a0e2b8 100644 --- a/navigateToPages/services.html +++ b/navigateToPages/services.html @@ -201,7 +201,7 @@
Introduction to Computer Science
Principles of Economics
- Go to Course + Go to Course
From 10d90efdbc87efb9cf6c258de534b2eb1999e517 Mon Sep 17 00:00:00 2001 From: mansi066 Date: Sat, 11 Jan 2025 16:43:39 +0530 Subject: [PATCH 2/3] Change --- Principle of Economics/watchvideo1.html | 2 +- Principle of Economics/watchvideo2.html | 2 +- Principle of Economics/watchvideo3.html | 2 +- Principle of Economics/watchvideo4.html | 2 +- Principle of Economics/watchvideo5.html | 2 +- Principle of Economics/watchvideo6.html | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Principle of Economics/watchvideo1.html b/Principle of Economics/watchvideo1.html index c595390..e123d0f 100644 --- a/Principle of Economics/watchvideo1.html +++ b/Principle of Economics/watchvideo1.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 01)

diff --git a/Principle of Economics/watchvideo2.html b/Principle of Economics/watchvideo2.html index 763ed35..ec34247 100644 --- a/Principle of Economics/watchvideo2.html +++ b/Principle of Economics/watchvideo2.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 02)

30-04-2024

diff --git a/Principle of Economics/watchvideo3.html b/Principle of Economics/watchvideo3.html index e4450af..ab8f679 100644 --- a/Principle of Economics/watchvideo3.html +++ b/Principle of Economics/watchvideo3.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 03)

22-05-2024

diff --git a/Principle of Economics/watchvideo4.html b/Principle of Economics/watchvideo4.html index 7361661..daa0b5c 100644 --- a/Principle of Economics/watchvideo4.html +++ b/Principle of Economics/watchvideo4.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 04)

22-06-2024

diff --git a/Principle of Economics/watchvideo5.html b/Principle of Economics/watchvideo5.html index b835bc3..7a5a41c 100644 --- a/Principle of Economics/watchvideo5.html +++ b/Principle of Economics/watchvideo5.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 05)

23-05-2024

diff --git a/Principle of Economics/watchvideo6.html b/Principle of Economics/watchvideo6.html index b65ea60..b682ec2 100644 --- a/Principle of Economics/watchvideo6.html +++ b/Principle of Economics/watchvideo6.html @@ -149,7 +149,7 @@
- +

Principle of Economics (part 06)

22-06-2024

From 80b188329a6cac20beec91d7d5cc8a83d1bdaa31 Mon Sep 17 00:00:00 2001 From: mansi066 Date: Sun, 12 Jan 2025 10:24:23 +0530 Subject: [PATCH 3/3] change --- .../principleofeconomics.html | 33 +- Principle of Economics/reading-material.html | 394 ++++++++++++++++++ 2 files changed, 423 insertions(+), 4 deletions(-) create mode 100644 Principle of Economics/reading-material.html diff --git a/Principle of Economics/principleofeconomics.html b/Principle of Economics/principleofeconomics.html index 9b8539e..34cf1fa 100644 --- a/Principle of Economics/principleofeconomics.html +++ b/Principle of Economics/principleofeconomics.html @@ -169,8 +169,7 @@

John Deo

Complete Principle of Economics tutorial

-

The principle of economics is a fundamental concept that underpins the study of how individuals, businesses, and societies make choices to allocate their limited resources. At its core, economics is concerned with the production, distribution, and consumption of goods and services.

-
+

Dive into the fascinating world of economics with our comprehensive Principles of Economics course. Explore the fundamental concepts and theories that drive economies globally, including supply and demand, market structures, and fiscal policies. This course is designed to equip you with a solid understanding of economic principles, enabling you to analyze real-world economic issues and make informed decisions. With interactive lessons, engaging readings, and challenging quizzes.

24-04-2024
@@ -263,8 +262,34 @@

Principle of Economic

Principle of Economics (part 06)

+ + + +

Reading Material

+
+ + + +

Play Quiz

+
-
Principle of Economic margin-bottom: 2rem; margin-right: -60rem; ">Click to Check your Knowledge Here -
+
-->
diff --git a/Principle of Economics/reading-material.html b/Principle of Economics/reading-material.html new file mode 100644 index 0000000..1a5fb51 --- /dev/null +++ b/Principle of Economics/reading-material.html @@ -0,0 +1,394 @@ + + + + + + + Studentify + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + + + + + +
+
+ Principles of Economics +

Principles of Economics

+

(7 reviews)

+

★★★★☆

+

Copyright Year: 2016

+

ISBN 13: 9781946135162

+

Publisher: University of Minnesota Libraries Publishing

+

Language: English

+
+
+

Table of Contents

+
    +
  • Chapter 1: Economics: The Study of Choice
  • +
  • Chapter 2: Confronting Scarcity: Choices in Production
  • +
  • Chapter 3: Demand and Supply
  • +
  • Chapter 4: Applications of Demand and Supply
  • +
  • Chapter 5: Elasticity: A Measure of Response
  • +
  • Chapter 6: Markets, Maximizers, and Efficiency
  • +
  • Chapter 7: The Analysis of Consumer Choice
  • +
  • Chapter 8: Production and Cost
  • +
  • Chapter 9: Competitive Markets for Goods and Services
  • +
  • Chapter 10: Monopoly
  • +
  • Chapter 11: The World of Imperfect Competition
  • +
  • Chapter 12: Wages and Employment in Perfect Competition
  • +
  • Chapter 13: Interest Rates and the Markets for Capital and Natural Resources
  • +
  • Chapter 14: Imperfectly Competitive Markets for Factors of Production
  • +
  • Chapter 15: Public Finance and Public Choice
  • +
+
+
+ + View Online + +
+ +
+ + + +
+ + + + +
+ + + + + + + +
+
+

Chatbot

+ close +
+
    +
  • + smart_toy +

    Hi there 👋
    How can I help you today?

    +
  • +
+
+ + send +
+
+ + + + + + + + + + +