+ diff --git a/Web-Development-Internship/Hariteja/Task1-Landingpage/Task One.html b/Web-Development-Internship/Hariteja/Task1-Landingpage/Task One.html new file mode 100644 index 0000000..e85337f --- /dev/null +++ b/Web-Development-Internship/Hariteja/Task1-Landingpage/Task One.html @@ -0,0 +1,94 @@ + + +
+ + +
+ 1: Comprehensive Food Database: Access detailed information on various foods, including nutritional content, health benefits, and meal ideas. Make informed dietary choices to support your fitness goals.
+2: Personalized Diet Plans: Receive customized diet plans tailored to your unique fitness objectives, dietary preferences, and health requirements. Stay on track with easy-to-follow meal suggestions and shopping lists.
+3: Nutrient Tracking: Monitor your daily nutrient intake with our intuitive tracking tools. Ensure you're meeting your dietary needs and maintaining a balanced diet for optimal health.
+4: Sports and Fitness Guidance: Get expert advice on various sports and fitness activities. Learn about different exercises, training routines, and how to integrate sports into your fitness regimen effectively.
+5: Progress Tracking: Keep track of your fitness journey with our progress tracking features. Record your workouts, monitor your improvements, and stay motivated by visualizing your achievements.
+6: Health Insights and Tips: Stay informed with regular updates on the latest health trends, fitness tips, and expert advice. Empower yourself with the knowledge to make healthier lifestyle choices.
+7: Community Support: Join a supportive community of fitness enthusiasts. Share your progress, exchange tips, and find motivation from like-minded individuals on their fitness journeys.
+"Zenithfitness has completely transformed my approach to fitness and nutrition. The personalized diet plans and nutrient tracking tools have helped me stay on top of my health goals. The community support is an added bonus, keeping me motivated every step of the way!"
+ +"I love the comprehensive food database and the expert advice on sports and fitness. Zenithfitness makes it easy to integrate healthy habits into my daily routine. I've seen significant improvements in my overall well-being since using the app."
+ +For more information or inquiries, please contact us:
+Our responsive landing page is designed to provide an optimal viewing and interaction experience across a wide range of devices,
from desktop computers to mobile phones. With a clean and modern design, the landing page effectively conveys essential information and encourages user engagement.
+ Technologies used: HTML, CSS
+ Live Preview / GitHub Repository + Nature photo gallery provides a stunning showcase for your images, delivering an immersive viewing experience that captivates
audiences across all devices. Seamlessly integrating with your website, this gallery enhances visual storytelling and elevates user engagement to new heights.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository + Student Enrollment Form simplifies the process of capturing essential information from prospective students, streamlining enrollment
procedures for educational institutions. Designed with user convenience and administrative efficiency in mind, this form offers a seamless experience for both applicants and admissions teams.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository +To-Do List application is a powerful tool for organizing tasks and managing productivity effectively. Whether you're tackling daily
chores, planning projects, or tracking long-term goals, this intuitive application simplifies task management and helps you stay focused on what matters most.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository + Interactive Calculator is a versatile tool for performing basic arithmetic operations with ease and accuracy. Whether you're
solving simple equations or complex mathematical problems, this intuitive calculator simplifies calculations and enhances productivity.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository +
+ Hero/Landing Responsive Page
+1:(CSEdge) has a great user interface,It features a user-friendly design,Smooth navigation is also a highlight,Overall, it provides an excellent experience!
+ Click here to Visit (CSEdge)
2:At CSEdge, the contact feature facilitates seamless communication with the team. Stay connected and informed by following the company on social media platforms like YouTube,Facebook, Instagram, and LinkedIn. For direct correspondence, feel free to reach out via Gmail. We're here to address inquiries and welcome feedback.
+3:At CSEdge, the internship program offers a comprehensive learning experience. Proudly MSME Registered, AICTE Accredited, and recognized by LinkedIn, CSEdge internship includes WhatsApp support for quick queries, E-Certificate upon completion, and access to free resources. Join us at CSEdge to gain valuable skills and practical knowledge
+4:CSEdge is an excellent platform that provides internships for new fresh graduates to gain practical experience. It is recognized as a verified company, instilling confidence in users that the internship opportunities offered here are genuine and valuable. CSEdge serves as a great starting point for new professionals in their career journey, fostering their growth and development.
+"I undertook an internship with CSEdge and had a very positive experience. Their guidance and support provided me with practical knowledge, and I found it to be an excellent platform for advancing my career. Thank you to the CSEdge team!."
+ +"My experience with CSEdge has been exceptional. The internship provided me with valuable skills and insights that have been instrumental in shaping my career. The support and guidance from the CSEdge team have been invaluable. Thank you for the enriching experience!"
+ +For more information or inquiries, please contact us:
+Our responsive landing page is designed to provide an optimal viewing and interaction experience across a wide range of devices,
from desktop computers to mobile phones. With a clean and modern design, the landing page effectively conveys essential information and encourages user engagement.
+ Technologies used: HTML, CSS
+ Live Preview / GitHub Repository + lightbox photo gallery provides a stunning showcase for your images, delivering an immersive viewing experience that captivates
audiences across all devices. Seamlessly integrating with your website, this gallery enhances visual storytelling and elevates user engagement to new heights.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository + Student Enrollment Form simplifies the process of capturing essential information from prospective students, streamlining enrollment
procedures for educational institutions. Designed with user convenience and administrative efficiency in mind, this form offers a seamless experience for both applicants and admissions teams.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository +To-Do List application is a powerful tool for organizing tasks and managing productivity effectively. Whether you're tackling daily
chores, planning projects, or tracking long-term goals, this intuitive application simplifies task management and helps you stay focused on what matters most.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository + Interactive Calculator is a versatile tool for performing basic arithmetic operations with ease and accuracy. Whether you're
solving simple equations or complex mathematical problems, this intuitive calculator simplifies calculations and enhances productivity.
+ Technologies used: HTML, CSS, JavaScript
+ Live Preview / GitHub Repository +Enter your text or URL
+ + + +Dynamic To-Do List
+Your score: ${score}/${quizData.length}
+ + `; +} + +function reviewScores() { + const quizContainer = document.getElementById('quiz-container'); + let reviewHTML = 'Question ${index + 1}: ${isCorrect ? 'Correct' : 'Wrong'}
`; + }); + quizContainer.innerHTML = reviewHTML; +} + +function showFeedback(message, color) { + const feedbackElement = document.getElementById('feedback'); + feedbackElement.innerText = message; + feedbackElement.style.color = color; +} + +function startTimer() { + let timeLeft = 10; + timer = setInterval(() => { + document.getElementById('timer').innerText =`Time left: ${timeLeft} seconds`; + timeLeft--; + if(timeLeft >= 0){ + document.getElementById('timer').innerText =`Time left: ${timeLeft} seconds`; + } + else { + clearInterval(timer); + showFeedback("Time's up!", "red"); + } + }, 1000); +} + +function nextQuestion() { + currentQuestion++; + if (currentQuestion < quizData.length) { + showQuestion(); + clearInterval(timer); + startTimer(); + } else { + endQuiz(); + } +} +startQuiz(); diff --git a/Web-Development-Internship/sajithahassain/Medium-03/Quiz Web/styles.css b/Web-Development-Internship/sajithahassain/Medium-03/Quiz Web/styles.css new file mode 100644 index 0000000..127bdcf --- /dev/null +++ b/Web-Development-Internship/sajithahassain/Medium-03/Quiz Web/styles.css @@ -0,0 +1,65 @@ +body { + font-family: Arial, sans-serif; + background-color: #f0f0f0; + text-align: center; +} + +.quiz-container { + display:none; + max-width: 600px; + margin: 50px auto; + background-color: #fff; + padding: 20px; + border-radius: 10px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.question { + font-size: 24px; + margin-bottom: 20px; +} + +.choices { + display: flex; + flex-direction: column; + align-items: center; + margin-bottom: 20px; +} + +.choice-btn { + font-size: 18px; + padding: 10px 20px; + margin-bottom: 10px; + border-radius: 5px; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.choice-btn:hover { + background-color: #ddd; +} + +.feedback { + font-size: 18px; + margin-bottom: 20px; +} + +.timer { + font-size: 20px; + margin-bottom: 20px; +} + +.next-btn { + font-size: 18px; + padding: 10px 20px; + border: none; + border-radius: 5px; + background-color: #007bff; + color: #fff; + cursor: pointer; + transition: background-color 0.3s ease; +} + +.next-btn:hover { + background-color: #0056b3; +}