-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
140 lines (134 loc) · 5.3 KB
/
Copy pathindex.html
File metadata and controls
140 lines (134 loc) · 5.3 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ITVersity, Inc - Training & Placement Assistance</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav>
<div class="container">
<div class="logo">ITVersity</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#locations">Locations</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h1>Welcome to ITVersity</h1>
<p>Empowering careers through quality education and placement assistance</p>
<a href="#courses" class="cta-button">Explore Courses</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="services">
<div class="container">
<h2>Our Services</h2>
<div class="services-grid">
<div class="service-card">
<i class="fas fa-graduation-cap"></i>
<h3>Training</h3>
<p>Expert-led training programs designed to build industry-relevant skills</p>
</div>
<div class="service-card">
<i class="fas fa-handshake"></i>
<h3>Placement Assistance</h3>
<p>Comprehensive support for career placement and professional growth</p>
</div>
</div>
</div>
</section>
<!-- Courses Section -->
<section id="courses" class="courses">
<div class="container">
<h2>Our Courses</h2>
<div class="courses-grid">
<div class="course-card">
<h3>Python for Beginners</h3>
<p>Master the fundamentals of Python programming language</p>
<a href="python-course.html" class="button">Learn More</a>
</div>
<div class="course-card">
<h3>Data Engineering Essentials</h3>
<p>Comprehensive training in modern data engineering tools and techniques</p>
<a href="data-engineering.html" class="button">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Locations Section -->
<section id="locations" class="locations">
<div class="container">
<h2>Our Locations</h2>
<div class="locations-grid">
<div class="location-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Dallas, TX</h3>
<p>United States</p>
</div>
<div class="location-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Hyderabad</h3>
<p>Telangana, India</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact">
<div class="container">
<h2>Contact Us</h2>
<form class="contact-form">
<input type="text" placeholder="Your Name" required>
<input type="email" placeholder="Your Email" required>
<select required>
<option value="">Select Course</option>
<option value="python">Python for Beginners</option>
<option value="data-engineering">Data Engineering Essentials</option>
</select>
<textarea placeholder="Your Message" required></textarea>
<button type="submit" class="button">Send Message</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>ITVersity, Inc</h4>
<p>Empowering careers through education</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#locations">Locations</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Connect With Us</h4>
<div class="social-links">
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 ITVersity, Inc. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>