-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
130 lines (124 loc) · 6.53 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pepe Partners</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#why-choose-us">Why Choose Us</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#partners">Partners</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<div class="container">
<img src="https://pepepartners.files.wordpress.com/2023/06/cropped-pepelogo-1.png" alt="Pepe Partners Logo">
<h1>Welcome to Pepe Partners</h1>
<p>Your trusted technology training hub</p>
<a href="#contact" class="btn">Get Started</a>
</div>
</section>
<section id="services">
<div class="container">
<h2>Our Services</h2>
<div class="service">
<h3>Web Development</h3>
<p>We offer comprehensive web development courses that cover both front-end and back-end technologies.</p>
</div>
<div class="service">
<h3>Data Science</h3>
<p>Our data science courses provide a strong foundation in data analysis, machine learning, and data visualization.</p>
</div>
<div class="service">
<h3>Mobile App Development</h3>
<p>Learn how to develop mobile apps for iOS and Android platforms using the latest frameworks and technologies.</p>
</div>
</div>
</section>
<section id="why-choose-us">
<div class="container">
<h2>Why Choose Us</h2>
<div class="reason">
<h3>Expert Instructors</h3>
<p>Our instructors are industry professionals with years of experience in their respective fields.</p>
</div>
<div class="reason">
<h3>Hands-on Learning</h3>
<p>We believe in learning by doing. Our courses are designed to provide practical, real-world experience.</p>
</div>
<div class="reason">
<h3>Flexible Schedule</h3>
<p>We offer both full-time and part-time courses to accommodate your busy schedule.</p>
</div>
<div class="reason">
<h3>Job Placement Assistance</h3>
<p>We provide job placement assistance to help you kickstart your career in the tech industry.</p>
</div>
</div>
</section>
<section id="testimonials">
<div class="container">
<h2>Testimonials</h2>
<div class="testimonial">
<img src="user1.jpg" alt="User 1">
<p>"Thanks to Pepe Partners training hub, our organization has truly stood out in our industry. The comprehensive and tailored training programs provided by Pepe Partners have equipped our team with the necessary skills and knowledge to excel. We have seen a significant improvement in our performance, and our clients have taken notice. Pepe Partners has undoubtedly helped us stand out from our competitors."</p>
<cite>- Amadi Njoku</cite>
</div>
<div class="testimonial">
<img src="user2.jpg" alt="User 2">
<p>"Pepe Partners training hub has been a game-changer for our organization. Their innovative and dynamic training programs have allowed us to stay ahead of the curve in our industry. The expert trainers at Pepe Partners have not only helped us develop new skills but have also instilled a sense of confidence in our team. As a result, we have been able to deliver exceptional results, making us stand out as a leader in our field."</p>
<cite>- Adama James</cite>
</div>
<div class="testimonial">
<img src="user2.jpg" alt="User 2">
<p>"Choosing Pepe Partners as our training hub was one of the best decisions we made for our organization. Their training programs have been instrumental in helping us stand out from the crowd. The practical and hands-on approach of their trainers has allowed us to apply the knowledge gained immediately, resulting in improved productivity and efficiency. Pepe Partners has truly helped us shine in our industry."</p>
<cite>- Adama James</cite>
</div>
<div class="testimonial">
<img src="user2.jpg" alt="User 2">
<p>"Pepe Partners training hub has been an invaluable resource for our organization. The training programs offered by Pepe Partners have not only helped us stand out but have also transformed our entire approach to business. The trainers' insights and guidance have enabled us to develop innovative strategies and out-of-the-box thinking, setting us apart from our competitors. We are grateful to Pepe Partners for their continuous support in helping us shine in our industry."</p>
<cite>- Adama James</cite>
</div>
</div>
</section>
<section id="partners">
<div class="container">
<h2>Our Partners</h2>
<div class="partner">
<img src="partner1.png" alt="Partner 1">
</div>
<div class="partner">
<img src="partner2.png" alt="Partner 2">
</div>
<div class="partner">
<img src="partner3.png" alt="Partner 3">
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<a href="https://wa.me/2349066115252" target="_blank" class="btn">WhatsApp Us</a>
</div>
</section>
<footer>
<div class="container">
<div class="social-links">
<a href="www.facebook.com/pepepartners"><img src="https://pepepartners.files.wordpress.com/2023/06/3.png" alt="Facebook"></a>
<a href="www.twitter.com/pepepartners"><img src="https://pepepartners.files.wordpress.com/2023/06/2.png" alt="Twitter"></a>
<a href="www.instagram.com/pepepartners"><img src="https://pepepartners.files.wordpress.com/2023/06/1.png" alt="Instagram"></a>
</div>
<p>© 2023 Pepe Partners Technology Training Hub. All rights reserved.</p>
</div>
</footer>
</body>
</html>