Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-PratikTikhe authored Feb 16, 2024
1 parent 63e7101 commit dd127da
Show file tree
Hide file tree
Showing 24 changed files with 984 additions and 0 deletions.
Binary file not shown.
40 changes: 40 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>About Us</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Our Story</h2>
<p>We are committed to providing a comprehensive solution for capacity building, performance assessment, and motivation-driven faculty upgradation. Our journey began with the vision of empowering educators with the tools and resources they need to enhance their teaching skills, improve student outcomes, and drive innovation in education.</p>
<p>Through our platform, educators can access personalized training programs, performance evaluation tools, and incentives to support their professional growth journey. We believe that investing in faculty development is crucial for building a sustainable and successful educational ecosystem.</p>
</section>
<section>
<h2>Our Mission</h2>
<p>Our mission is to transform the education sector by empowering educators and institutions with innovative solutions for capacity building, performance assessment, and faculty upgradation. We strive to create a positive impact on teaching and learning outcomes, thereby contributing to the overall development of society.</p>
</section>
<section>
<h2>Our Team</h2>
<p>We have a dedicated team of professionals with expertise in education, technology, and business management. Our team is committed to providing high-quality services and support to our clients and partners, ensuring their success in achieving their educational goals.</p>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
</body>
</html>
66 changes: 66 additions & 0 deletions ai.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Technology Course</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>AI Technology Course</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>Course Overview</h2>
<p>Overview of the AI Technology course goes here.</p>
</section>
<section>
<h2>Course Curriculum</h2>
<ul>
<li>Topic 1</li>
<li>Topic 2</li>
<li>Topic 3</li>
<!-- Add more curriculum items as needed -->
</ul>
</section>
<section>
<h2>Lecture Videos</h2>
<div class="video">
<h3>AI Technology Introduction</h3>
<video controls>
<source src="What Is Artificial Intelligence_ _ Artificial Intelligence (AI) In 10 Minutes _ Edureka.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p>Progress: <span id="progress_ai">0</span>% Completed</p>
</div>
<!-- Add more video sections as needed -->
</section>
<section>
<h2>Instructor</h2>
<p>Instructor information for AI Technology course goes here.</p>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
<script>
// JavaScript for progress tracking
const video = document.querySelector('video');
const progress = document.getElementById('progress_ai');

video.addEventListener('timeupdate', function() {
const progressValue = (this.currentTime / this.duration) * 100;
progress.textContent = progressValue.toFixed(2);
});
</script>
</body>
</html>
Binary file added ai.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added cap.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 66 additions & 0 deletions cloud.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Technology Course</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>AI Technology Course</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>Course Overview</h2>
<p>Overview of the AI Technology course goes here.</p>
</section>
<section>
<h2>Course Curriculum</h2>
<ul>
<li>Topic 1</li>
<li>Topic 2</li>
<li>Topic 3</li>
<!-- Add more curriculum items as needed -->
</ul>
</section>
<section>
<h2>Lecture Videos</h2>
<div class="video">
<h3>AI Technology Introduction</h3>
<video controls id="video_ai">
<source src="What Is Artificial Intelligence_ _ Artificial Intelligence (AI) In 10 Minutes _ Edureka.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p>Progress: <span id="progress_ai">0</span>% Completed</p>
</div>
<!-- Add more video sections as needed -->
</section>
<section>
<h2>Instructor</h2>
<p>Instructor information for AI Technology course goes here.</p>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
<script>
// JavaScript for progress tracking
const video = document.getElementById('video_ai');
const progress = document.getElementById('progress_ai');

video.addEventListener('timeupdate', function() {
const progressValue = (this.currentTime / this.duration) * 100;
progress.textContent = progressValue.toFixed(2);
});
</script>
</body>
</html>
Binary file added cloud.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Contact Information</h2>
<p>If you have any questions or inquiries, feel free to contact us using the information provided below:</p>
<ul>
<li>Email: [email protected]</li>
<li>Phone: +1 123-456-7890</li>
<li>Address: 123 Main Street, City, Country</li>
</ul>
</section>
<section>
<h2>Contact Form</h2>
<p>You can also send us a message using the form below:</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br><br>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
</body>
</html>
53 changes: 53 additions & 0 deletions courses.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Courses</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Our Courses</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li> <!-- Update the Home button link -->
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="courses">
<div class="course">
<img src="python.jpg" alt="Python Course">
<h3>Introduction to Python</h3>
<p>A beginner-friendly course to learn Python programming language.</p>
<a href="python.html">Learn More</a>
</div>
<div class="course">
<img src="java.jpg" alt="Java Full Stack Course">
<h3>Java Full Stack Course</h3>
<p>Master Java programming and build full-stack web applications.</p>
<a href="java.html">Learn More</a>
</div>
<div class="course">
<img src="cloud.jpg" alt="Cloud Service Course">
<h3>Cloud Service</h3>
<p>Learn about cloud computing and popular cloud services.</p>
<a href="cloud.html">Learn More</a>
</div>
<div class="course">
<img src="ai.jpg" alt="AI Technology Course">
<h3>AI Technology</h3>
<p>Explore artificial intelligence and machine learning technologies.</p>
<a href="ai.html">Learn More</a>
</div>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
</body>
</html>
Binary file added enge.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample HTML Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Capacity building and performance assessment and motivation driven tool for faculty upgradation. </h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li> <!-- Added Login button -->
</ul>
</nav>
</header>
<main>
<section>
<h2>About Us</h2>
<p>This website is dedicated to providing a comprehensive solution for capacity building, performance assessment, and motivation-driven faculty upgradation. We aim to empower educators with the tools and resources they need to enhance their teaching skills, improve student outcomes, and drive innovation in education.</p>
<p>Through our platform, educators can access personalized training programs, performance evaluation tools, and incentives to support their professional growth journey. We believe that investing in faculty development is crucial for building a sustainable and successful educational ecosystem.</p>
</section>
<section>
<h2>Our offered course</h2>
<P>⁜ Introduction to Python</P>
<P>⁜ Java Full Stack Course</P>
<P>⁜ Cloud Service</P>
<P>⁜ AI Technology</P>
</section>
<section>
<h2>Our Teachers</h2>
<div class="teacher-container">
<div class="teacher">
<img src="cap.jpg" alt="Teacher 1">
<h3>Chris Evans</h3>
<p>Subject: Introduction to Python</p>
</div>
<div class="teacher">
<img src="enge.jpg" alt="Teacher 2">
<h3>Angelen Jolie</h3>
<p>Subject: Java Full Stack Course</p>
</div>
</div>
<div class="teacher-container">
<div class="teacher">
<img src="thor.jpg" alt="Teacher 3">
<h3>Chris Hemesworth</h3>
<p>Subject: Cloud Service</p>
</div>
<div class="teacher">
<img src="wanda.jpg" alt="Teacher 4">
<h3>Elezabith Olesen</h3>
<p>Subject: AI Technology</p>
</div>
</div>
</section>
</main>
<footer>
<p>&copy; 2024 Sample Website. All rights reserved.</p>
</footer>
</body>
</html>
Loading

0 comments on commit dd127da

Please sign in to comment.