-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
116 lines (114 loc) · 4.98 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>About CodeCamp</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/f41acb8d77.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./fonts/cocogoose.css" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/about.css" />
<link rel="stylesheet" href="./css/menu.css" />
</head>
<body>
<main>
<nav class="toggle-nav">
<button type="button" class="close-menu"><i class="fa fa-times fa-spin" aria-hidden="true"></i></button>
<ul>
<li><a href="about.html">About</a></li>
<li>Program</li>
<li>Join</li>
<li>Sponsor</li>
<li><a href="index.html">Home</a></li>
<li>CodeCamp Campaign</li>
</ul>
</nav>
<div class="main-container">
<div class="header-wrapper">
<nav class="upper-nav">
<ul>
<li>f</li>
<li><i class="fa-brands fa-twitter"></i></li>
<li>English</li>
<li>My Page</li>
<li>Logout</li>
</ul>
</nav>
<header>
<a href="index.html" class="logo">CodeCamp Logo</a>
<span class="toggle-btn">☰</span>
<nav class="lower-nav">
<ul>
<li><a href="about.html">About</a></li>
<li>Program</li>
<li>Join</li>
<li>Sponsor</li>
<li><a href="index.html">Home</a></li>
<li>CodeCamp Campaign</li>
</ul>
</nav>
</header>
<section class="about-section">
<h1>"Hello! Programmers"</h1>
<div class="about-text">
Code Camp African Best Bootcamp
</div>
<div class="about-desc">
<p>Code Camp is the largest Bootcamp in the Eastern Africa. We believe in talent and we aim to bring a positive impact to the society through coding.</p>
</div>
<article class="about-article">
<h3>Please contact us through Email for further Inquiries about CodeCamp Org!</h3>
<span>[email protected]</span>
</article>
</section>
</div>
<section class="about-middle">
<div class="middle-context">
<h2>Code Camp Global Bootcamp 2022 Logo</h2>
<span>The logo of CodeCamp Global Bootcamp 2022 was decided through the logo competition held on 8 June 2021.</span>
<div class="about-logo">
<span>CC Global Bootcamp 2022</span>
<p>28th - 4th April 2022 | Nairobi, Kenya. </p>
</div>
</div>
</section>
<hr>
<section>
<div class="middle">
<h2>See the past CC Bootcamp Summits</h2>
<p>Take a look at the last two CC Bootcamp Summits which took place in Nairobi, Kenya.</p>
</div>
<div class="row">
<div class="code-summit">
<p>2022</p>
<span>CC Bootcamp Summit 2022 in Ihub</span>
</div>
<div class="code-summit">
<p>2022</p>
<span>CC Bootcamp Summit 2022 in Ihub</span>
</div>
</div>
</section>
<section class="last-section">
<h4>Partner</h4>
<div class="partners">
<span>Google</span>
<span>Safaricom</span>
<span>Linkedin</span>
<span>Microverse</span>
</div>
</section>
<footer>
<div class="footer">
<span>CodeCamp <br> Org</span>
<p>2022 CodeCamp Org <br> Some Rights Reserved</p>
</div>
</footer>
</div>
</main>
<script src="./js/index.js"></script>
</body>
</html>