diff --git a/Introduction to Business Management/app.css b/Introduction to Business Management/app.css new file mode 100644 index 0000000..94943eb --- /dev/null +++ b/Introduction to Business Management/app.css @@ -0,0 +1,109 @@ +:root{ + --hue-neutral:200; + --hue-wrong:0; + --hue-correct:145; +} + +body{ + --hue: var(--hue-neutral); + padding: 0; + margin: 0; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + background-image:linear-gradient(45deg, #3498db, #2ecc71); + + height: 100vh; + width: 100vw; +} + +body.correct{ + --hue: var(--hue-correct); +} + +body.wrong{ + --hue: var(--hue-wrong); +} + +.container{ + width: 800px; + max-width: 80%; + background-color: aliceblue; + border-radius: 5px; + padding: 10px; + box-shadow: 0 0 10px 2px; + margin-bottom: 20px; +} + +.btn-grid { + display: grid; + grid-template-columns: repeat(2, auto); + gap: 10px; + margin: 20px 0; +} + +.btn{ + --hue: var(--hue-neutral); + border: 1px solid hsl(var(--hue), 100%, 30%); + background-color: rgba(6, 109, 109, 0.571); + border-radius: 5px; + padding: 5px 10px; + color: whitesmoke; + outline: none; + cursor: pointer; +} + +.btn.correct { + background-color: hsl(var(--hue-correct), 100%, 30%); +} + +.btn.wrong { + background-color: hsl(var(--hue-wrong), 100%, 30%); +} + +.btn:hover{ + border-color: black; + opacity: 2; +} + +.start-btn, +.next-btn{ + font-size: 1.5rem; + font-weight: bold; + padding: 10px 20px; + cursor: pointer; +} + +.controls{ + display: flex; + justify-content: center; + align-items: center; +} + +.hide{ + display: none; +} + .score-container { + --hue :var(--hue-neutral); +} + +.score { + font-size: 1.5rem; + font-weight: bold; + text-align: center; + padding: 10px; + border-radius: 5px; + background-color: aliceblue; + box-shadow: 0 0 10px 2px; +} + +.score.correct { + color: hsl(var(--hue-correct), 100%, 30%); + +} + +.score.wrong { + color: hsl(var(--hue-wrong), 100%, 30%); + +} diff --git a/Introduction to Business Management/course.css b/Introduction to Business Management/course.css new file mode 100644 index 0000000..29febde --- /dev/null +++ b/Introduction to Business Management/course.css @@ -0,0 +1,482 @@ +@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: linear-gradient(135deg, #FFC0CB, #87CEFA, #FFFFFF); +} +body.theme-dark{ + background-image: linear-gradient(to right ,var(--tw-gradient-stops)); +} +.heading + { + font-size: 4rem; + font-weight: 800; + text-transform: capitalize; + margin-top: 2rem; + margin-left: 45rem; +} + + +.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: 6.5rem; + align-items: flex-start; + justify-content: center; + margin: 6rem; + } + + + +.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; +} + +@import url('https://fonts.googleapis.com/css?family=Raleway:400,800'); + +body { + font-family: Arial, sans-serif; + background-color: #f4f4f4; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + flex-flow: wrap; + min-height: 100vh; +} + +.video-container { + max-width: 1200px; + margin: 0 auto; + padding: 20px; +} + + +.box-container { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 6.5rem; + align-items: flex-start; + justify-content: center; + margin: 6rem; +} + +figure.snip1107 { + font-family: 'Raleway', Arial, sans-serif; + color: #fff; + position: relative; + overflow: hidden; + margin: 10px; + min-width: 320px; /* Increased */ + max-width: 420px; /* Increased */ + max-height: 320px; /* Increased */ + width: 100%; + background: #000000; + text-align: center; +} + +figure.snip1107 * { + box-sizing: border-box; + transition: all 0.3s; +} + +figure.snip1107 img { + opacity: 1; + width: 100%; + height: auto; /* Ensure aspect ratio is maintained */ + transition: all 0.6s; +} + +figure.snip1107 figcaption { + position: absolute; + bottom: 0; + left: 18%; + right: 18%; + height: 100%; +} + +figure.snip1107 figcaption > div { + overflow: hidden; + width: 100%; + position: relative; + height: 50%; +} + +figure.snip1107 h3, +figure.snip1107 span { + margin: 0; + padding: 10px 15px; + display: inline-block; + width: 100%; + font-weight: 800; + text-transform: uppercase; +} + +figure.snip1107 span { + background: #ffffff; + color: #4d4d4d; + position: absolute; + bottom: 0; + left: 0; + transform: translate3d(0%, 100%, 0); +} + +figure.snip1107 h3 { + background: #333333; + transform: translate3d(0%, 0%, 0); +} + +figure.snip1107 a { + left: 0; + right: 0; + top: 0; + bottom: 0; + position: absolute; + color: #ffffff; +} + +figure.snip1107.blue { + background: #0a212f; +} + +figure.snip1107.blue h3 { + background:#4caf50; +} + +figure.snip1107:hover img, +figure.snip1107.hover img { + opacity: 0.35; + filter: blur(5px); + transform: scale(1.1); +} + +figure.snip1107:hover figcaption span, +figure.snip1107.hover figcaption span { + transform: translate3d(0%, 0%, 0); +} + +figure.snip1107:hover figcaption h3, +figure.snip1107.hover figcaption h3 { + transform: translate3d(0%, -100%, 0); +} + +/* Demo purposes only */ +html { + height: 100%; +} + + + +.video-container .box-container .bo +.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; + font-size: 2rem; + text-decoration: underline; + color: purple; + +} + +.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/Introduction to Business Management/image.png b/Introduction to Business Management/image.png new file mode 100644 index 0000000..e84d58b Binary files /dev/null and b/Introduction to Business Management/image.png differ diff --git a/Introduction to Business Management/img.png b/Introduction to Business Management/img.png new file mode 100644 index 0000000..fdfae6d Binary files /dev/null and b/Introduction to Business Management/img.png differ diff --git a/Introduction to Business Management/introductionTobusinessmanagement.html b/Introduction to Business Management/introductionTobusinessmanagement.html new file mode 100644 index 0000000..2fc7904 --- /dev/null +++ b/Introduction to Business Management/introductionTobusinessmanagement.html @@ -0,0 +1,406 @@ + + + + + + + Introduction to Psychology + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ +
+ +

Course Details

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

David Deo

+
+
+ +
+

Complete Introduction to Business Management tutorial

+ +

Embark on an exciting journey into the world of business with Stydenify's "Foundations of Business Management" course. Immerse yourself in dynamic video lessons, sharpen your skills with practical case studies, and gain insights through detailed reading materials. Ideal for aspiring managers, professionals, and anyone eager to master the art of business management!

+ 15-02-2024 +
+
+
+ + + +
+ + + + + + +
+

Playlist Videos

+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 01)

+
+ +
+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 02)

+
+ +
+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 03)

+
+ +
+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 04)

+
+ +
+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 05)

+
+ +
+
+
+ +
+
Watch Now
+
+

Introduction to Business Management (Part 06)

+
+ +
+
+
+ +
+
Read Now
+
+

Reading Material

+
+ +
+
+
+ +
+
Play Now
+
+

Play Quiz

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

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Introduction to Business Management/quiz.html b/Introduction to Business Management/quiz.html new file mode 100644 index 0000000..36ea274 --- /dev/null +++ b/Introduction to Business Management/quiz.html @@ -0,0 +1,28 @@ + + + + + + Introduction to Psychology + + + +
+
+
Question
+
+ +
+
+
+ + +
+
+
+ Score: 0 +
+ + + + diff --git a/Introduction to Business Management/reading-material.html b/Introduction to Business Management/reading-material.html new file mode 100644 index 0000000..ce22947 --- /dev/null +++ b/Introduction to Business Management/reading-material.html @@ -0,0 +1,398 @@ + + + + + + + Introduction to Psychology + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + + + + + +
+
+ Introduction to Psychological +

+ Introduction to Psychology

+

(22 reviews)

+

★★★★☆

+

Copyright Year: 2015

+

ISBN 13: 9781946135131 + +

+

Publisher: University of Minnesota Libraries Publishing

+

Language: English

+
+
+

Table of Contents

+ +
+
+ + View Online + +
+
+

Conditions of Use

+ Attribution-NonCommercial-ShareAlike CC BY-NC-SA +
+
+ + + + + + +
+
+

Chatbot

+ close +
+ +
+ + send +
+
+ + + + + + + + + + + diff --git a/Introduction to Business Management/script.js b/Introduction to Business Management/script.js new file mode 100644 index 0000000..b059e53 --- /dev/null +++ b/Introduction to Business Management/script.js @@ -0,0 +1,180 @@ +const startButton = document.getElementById("start-btn"); +const nextButton = document.getElementById("next-btn"); + +const questionContainerElement = document.getElementById("question-container"); +const questionElement = document.getElementById("question"); +const answerButtonsElement = document.getElementById("answer-buttons"); +const scoreContainerElement = document.getElementById("score-container"); +const scoreElement = document.getElementById("right-answer"); + +let shuffledQuestions, currentQuestionIndex; +let quizScore = 0; + +startButton.addEventListener("click", startGame); +nextButton.addEventListener("click", () => { + currentQuestionIndex++; + setNextQuestion(); +}); + +function startGame() { + startButton.classList.add("hide"); + shuffledQuestions = questions.sort(() => Math.random() - 0.5); + currentQuestionIndex = 0; + questionContainerElement.classList.remove("hide"); + scoreContainerElement.classList.remove("hide"); + setNextQuestion(); + quizScore = 0; + scoreElement.innerText = `Score: ${quizScore}`; + scoreElement.classList.remove("correct"); + scoreElement.classList.remove("wrong"); +} + +function setNextQuestion() { + resetState(); + showQuestion(shuffledQuestions[currentQuestionIndex]); +} + +function showQuestion(question) { + questionElement.innerText = question.question; + question.answers.forEach((answer) => { + const button = document.createElement("button"); + button.innerText = answer.text; + button.classList.add("btn"); + if (answer.correct) { + button.dataset.correct = answer.correct; + } + button.addEventListener("click", selectAnswer); + answerButtonsElement.appendChild(button); + }); +} + +function resetState() { + clearStatusClass(document.body); + nextButton.classList.add("hide"); + while (answerButtonsElement.firstChild) { + answerButtonsElement.removeChild(answerButtonsElement.firstChild); + } +} + +function selectAnswer(e) { + const selectedButton = e.target; + const correct = selectedButton.dataset.correct; + setStatusClass(document.body, correct); + Array.from(answerButtonsElement.children).forEach((button) => { + setStatusClass(button, button.dataset.correct); + button.disabled = true; // Disable the button after an answer is selected + }); + if (shuffledQuestions.length > currentQuestionIndex + 1) { + nextButton.classList.remove("hide"); + } else { + startButton.innerText = "Restart"; + startButton.classList.remove("hide"); + } + if (correct) { + quizScore++; + scoreElement.innerText = `Correct! Score: ${quizScore}`; + scoreElement.classList.add("correct"); + scoreElement.classList.remove("wrong"); + } else { + scoreElement.innerText = `Wrong! Score: ${quizScore}`; + scoreElement.classList.add("wrong"); + scoreElement.classList.remove("correct"); + } +} + +function setStatusClass(element, correct) { + clearStatusClass(element); + if (correct) { + element.classList.add("correct"); + } else { + element.classList.add("wrong"); + } +} + +function clearStatusClass(element) { + element.classList.remove("correct"); + element.classList.remove("wrong"); +} + +const questions = [ + { + question: "Who is considered the father of modern management?", + answers: [ + { text: "Henry Ford", correct: false }, + { text: "Peter Drucker", correct: false }, + { text: "Frederick Winslow Taylor", correct: true }, + ], + }, + { + question: "Which management function involves setting objectives and determining a course of action?", + answers: [ + { text: "Planning", correct: true }, + { text: "Organizing", correct: false }, + { text: "Controlling", correct: false }, + ], + }, + { + question: "What is the term for the process of assigning tasks and responsibilities to employees?", + answers: [ + { text: "Delegation", correct: true }, + { text: "Motivation", correct: false }, + { text: "Coordination", correct: false }, + ], + }, + { + question: "Which business structure has the advantage of limited liability for its owners?", + answers: [ + { text: "Sole Proprietorship", correct: false }, + { text: "Partnership", correct: false }, + { text: "Corporation", correct: true }, + ], + }, + { + question: "A SWOT analysis identifies strengths, weaknesses, opportunities, and threats.", + answers: [ + { text: "True", correct: true }, + { text: "False", correct: false }, + ], + }, + { + question: "Which type of leadership style emphasizes teamwork and collaboration?", + answers: [ + { text: "Autocratic", correct: false }, + { text: "Democratic", correct: true }, + { text: "Laissez-faire", correct: false }, + ], + }, + { + question: "What is the primary goal of marketing in business management?", + answers: [ + { text: "To improve employee satisfaction", correct: false }, + { text: "To meet customer needs profitably", correct: true }, + { text: "To reduce operational costs", correct: false }, + ], + }, + { + question: "The process of comparing a company’s performance with industry standards is known as benchmarking.", + answers: [ + { text: "True", correct: true }, + { text: "False", correct: false }, + ], + }, + { + question: "What is the term for the distribution of authority within an organization?", + answers: [ + { text: "Centralization", correct: false }, + { text: "Decentralization", correct: true }, + { text: "Formalization", correct: false }, + ], + }, + { + question: "Which economic concept describes the relationship between supply and demand?", + answers: [ + { text: "Elasticity", correct: true }, + { text: "Economies of scale", correct: false }, + { text: "Cost-benefit analysis", correct: false }, + ], + }, + + +]; diff --git a/Introduction to Business Management/watchvideo1.html b/Introduction to Business Management/watchvideo1.html new file mode 100644 index 0000000..1824d68 --- /dev/null +++ b/Introduction to Business Management/watchvideo1.html @@ -0,0 +1,305 @@ + + + + + + + + Introduction to BUsiness Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ +
+ +
+ +

Introduction To Business Management (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/Introduction to Business Management/watchvideo2.html b/Introduction to Business Management/watchvideo2.html new file mode 100644 index 0000000..13ec64a --- /dev/null +++ b/Introduction to Business Management/watchvideo2.html @@ -0,0 +1,304 @@ + + + + + + + Introduction to Business Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Introduction to Business Management(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/Introduction to Business Management/watchvideo3.html b/Introduction to Business Management/watchvideo3.html new file mode 100644 index 0000000..95ccd49 --- /dev/null +++ b/Introduction to Business Management/watchvideo3.html @@ -0,0 +1,304 @@ + + + + + + + Introduction to Business Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Introduction to Psychology (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/Introduction to Business Management/watchvideo4.html b/Introduction to Business Management/watchvideo4.html new file mode 100644 index 0000000..2f088a3 --- /dev/null +++ b/Introduction to Business Management/watchvideo4.html @@ -0,0 +1,304 @@ + + + + + + + Introduction to Business Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Introduction to Business Management(part 04)

+
+

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/Introduction to Business Management/watchvideo5.html b/Introduction to Business Management/watchvideo5.html new file mode 100644 index 0000000..e6f6218 --- /dev/null +++ b/Introduction to Business Management/watchvideo5.html @@ -0,0 +1,303 @@ + + + + + + + Introduction to Business Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Introduction to Business Management (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/Introduction to Business Management/watchvideo6.html b/Introduction to Business Management/watchvideo6.html new file mode 100644 index 0000000..9a3a6d1 --- /dev/null +++ b/Introduction to Business Management/watchvideo6.html @@ -0,0 +1,304 @@ + + + + + + + Introduction to Business Management + + + + + + + + + + + + + + + + + + +
+ +
+ + + + +
+ + + +
+ +
+
+ + +
+ +
+ +

Introduction to Business Management (part 06)

+
+

22-06-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/navigateToPages/services.html b/navigateToPages/services.html index 3c91197..691ab11 100644 --- a/navigateToPages/services.html +++ b/navigateToPages/services.html @@ -147,6 +147,133 @@
+ +
+ Card image cap +
+
Introduction to Computer Science
+ + +
+
+ + +
+ Card image cap +
+
Principles of Economics
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Creative Writing
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Introduction to Psychology
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Algebra and Calculus
+ + Go to Course +
+
+ + +
+ Card image cap +
+
World History: From Ancient Civilizations to the Modern Era
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Environmental Science and Sustainability
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Introduction to Business Management
+ + Go to Course +
+
+ + + +
+ Card image cap +
+
Digital Marketing Fundamentals
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Human Anatomy and Physiology
+ + Go to Course +
+
+ + +
+ Card image cap +
+
Introduction to Data Science
+ + Go to Course +
+
+ + + + + + +
+ Card image cap +
+
Public Speaking and Communication Skills
+ + Go to Course +
+
+ + +