-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
87 lines (77 loc) · 2.77 KB
/
about.html
File metadata and controls
87 lines (77 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About - The Bridge</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>About The Bridge</h1>
<p>Empowering Tomorrow’s IT Professionals</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="team.html">Team</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a href="team.html">Team</a>
<a href="privacy.html">Privacy</a>
</nav>
<div class="container">
<div class="cards">
<div class="card">
<h3>Targeted Skills</h3>
<ul>
<li>Full-stack Web Development (HTML, CSS, JavaScript, frameworks)</li>
<li>Mobile App Development (iOS, Android, cross-platform)</li>
<li>Software Systems Engineering (architecture, testing, deployment)</li>
<li>Project Management & Collaboration using GitHub</li>
<li>Problem-Solving, Critical Thinking, and Agile Practices</li>
</ul>
</div>
<div class="card">
<h3>Professional Services</h3>
<p>
The Bridge provides clients with practical IT services performed by skilled members:
</p>
<ul>
<li>Custom Web Development Projects</li>
<li>Mobile Application Solutions</li>
<li>Enterprise Software & System Integration</li>
<li>Technical Consulting & Prototype Development</li>
</ul>
</div>
<div class="card">
<h3>Learning Approach</h3>
<p>
Our program focuses on hands-on project experience to bridge the gap between theory and practice.
Members gain experience with:
</p>
<ul>
<li>Real-world project timelines and deliverables</li>
<li>Collaborating in teams with defined roles</li>
<li>Version control and professional documentation</li>
<li>Receiving mentorship and structured feedback</li>
</ul>
</div>
<div class="card">
<h3>Member Benefits</h3>
<p>
By participating in The Bridge initiative, members build:
</p>
<ul>
<li>Credible portfolios showcasing completed projects</li>
<li>Teamwork and leadership experience</li>
<li>Professional communication and presentation skills</li>
<li>Confidence in applying skills directly in industry roles</li>
</ul>
</div>
</div>
</div>
<footer>
<p>© 2026 The Bridge Initiative</p>
<p>"Connecting Minds, Crafting Future Professionals"</p>
</footer>
</body>
</html>