-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (85 loc) · 3.44 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Best Online Learning Platform</title>
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<!-- Link to your CSS file -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="logo">
<img src="image\fpt-logo.svg" alt="PFT Software Logo">
</div>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div class="nav-button">
<a href="#" class="button">Join Now</a>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-section">
<img src="image\intro-background.jpeg" alt="background">
<p class="tagline">BEST ONLINE COURSE</p>
<h1>Best Online Learning Platform</h1>
<a href="#" class="button">Learn More</a>
</header>
<!-- Popular Courses Section -->
<h1>Our Popular Courses</h1>
<div class="course-container">
<div class="course-card">
<img src="image\java-course.webp" alt="Image 1" />
<div class="course-title">Full-Stack Java Web for Beginner</div>
<div class="course-info">46 sections - 716 lectures</div>
<div class="course-desc">Learn Java server pages, servlets, and JSTL from the basics to advance</div>
</div>
<div class="course-card">
<img src="image\dotnet-course.webp" alt="Image 2" />
<div class="course-title">Full-Stack .Net Web for Beginner</div>
<div class="course-info">19 sections - 208 lectures</div>
<div class="course-desc">Learn how to build an application from start to publishing with .Net Core</div>
</div>
<div class="course-card">
<img src="image\react-course.png" alt="Image 3" />
<div class="course-title">Professional React Developer</div>
<div class="course-info">27 sections - 122 lectures</div>
<div class="course-desc">Build enterprise level React applications and deploy to preduction (using React
18!)</div>
</div>
</div>
<!-- Sign Up Section -->
<section class="sign-up">
<h2>Sign Up Now</h2>
<form>
<div class="form-group">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" placeholder="Your Name...">
</div>
<div class="form-group">
<label for="email">Your Email:</label>
<input type="email" id="email" name="email" placeholder="Your Email...">
</div>
<div class="form-group">
<label for="message">Your Message:</label>
<textarea id="message" name="message" placeholder="Your Message..." rows="5"></textarea>
</div>
<button type="submit" class="button">Submit</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2023 PFT Software</p>
</footer>
<!-- Link to your JavaScript file -->
<script src="script.js"></script>
</body>
</html>