forked from sahubhawani/edunet-jpnce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (98 loc) · 2.87 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
99
100
101
102
103
104
105
106
107
108
109
<!-- Ex. 1: A webpage that provides information about a training organization, including its services, courses, and contact details. -->
<!DOCTYPE html>
<html lang="en-IN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Training Organization - Edunet Foundation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #FFFFE0;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1rem;
}
nav {
background-color: #444;
color: #fff;
text-align: center;
padding: 0.5rem;
}
a:link {
color: rgb(247, 248, 247);
background-color: transparent;
text-decoration: none;
}
section {
padding: 1rem;
}
footer {
background-color: #555;
color: #fff;
text-align: center;
padding: 1rem;
}
h2 {
color: rgb(0, 255, 68);
}
</style>
</head>
<body>
<!-- Header section -->
<header>
<h1>Welcome to Edunet Foundation</h1>
<p>Your Path to Success Begins Here</p>
</header>
<!-- Navigation section -->
<nav>
<a href="home">Home</a> |
<a href="#">Courses</a> |
<a href="#">Services</a> |
<a href="#">Contact</a>
</nav>
<!-- Main content section -->
<section>
<h2>About Us</h2>
<p>Edunet Foundation is a leading training organization that specializes in providing high-quality courses in various fields, including technology, softskill, and personal development.</p>
</section>
<!-- Courses section -->
<section>
<h2>Our Courses</h2>
<ul>
<li>Web Development</li>
<li>Data Science</li>
<li>Artificial Intelligence</li>
<li>Cyber security</li>
<li>Leadership Skills</li>
</ul>
</section>
<!-- Services section -->
<section>
<h2>Our Services</h2>
<p>We offer a range of services, including:</p>
<ul>
<li>Customized Corporate Training</li>
<li>Online Learning Platforms</li>
<li>Project Guidence</li>
<li>Workshops and Seminars</li>
</ul>
</section>
<!-- Contact section -->
<section>
<h2>Contact Us</h2>
<p>If you have any questions or inquiries, please feel free to contact us:</p>
<p>Email: [email protected]</p>
<p>Phone: (123) 456-7890</p>
</section>
<!-- Footer section -->
<footer>
<p>© 2023 LearnTech. All rights reserved.</p>
</footer>
</body>
</html>