-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (133 loc) · 6.43 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Web Development Course</title>
<meta name="description" content="">
<meta name="image" property="og:image" content="./images/summit/Capture.PNG">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS only -->
<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="section-one">
<h1>"Hello! Programmers"</h1>
<div class="glow-text">
Code Camp African Best Bootcamp
</div>
<div class="p-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>
<h3>2022.25.03(SAT) ~ 04(FRI)</h3>
<p>@ CodeCamp Building, Near Sarit Center</p>
</article>
</section>
</div>
<section class="main-program">
<h2 class="h2-text-main">Main Program</h2>
<div class="program-container">
<div class="main-content">
<img src="./images/lecture.jpg" alt="lecture" width="60" height="40" />
<h3>Lecture</h3>
<p>Listen to the speakers from the best bootcamp ever, Ask any question related to programming and tech in general</p>
</div>
<div class="main-content">
<img src="./images/lecture.jpg" alt="lecture" width="60" height="40" />
<h3>Lecture</h3>
<p>Listen to the speakers from the best bootcamp ever, Ask any question related to programming and tech in general</p>
</div>
<div class="main-content">
<img src="./images/lecture.jpg" alt="lecture" width="60" height="40" />
<h3>Lecture</h3>
<p>Listen to the speakers from the best bootcamp ever, Ask any question related to programming and tech in general</p>
</div>
<div class="main-content border-around">
<img src="./images/lecture.jpg" alt="lecture" width="60" height="40" />
<h3>Lecture</h3>
<p>Listen to the speakers from the best bootcamp ever, Ask any question related to programming and tech in general</p>
</div>
<div class="main-content">
<img src="./images/lecture.jpg" alt="lecture" width="60" height="40" />
<h3>Lecture</h3>
<p>Listen to the speakers from the best bootcamp ever, Ask any question related to programming and tech in general</p>
</div>
<button type="button">Join CodeCamp Summit 2022</button>
<a href="#">See the whole program</a>
</div>
</section>
<!-- Featured Speakers -->
<section>
<div class="featued-speakers">
<h3>Featured Speakers</h3>
<div class="speakers-container"></div>
<div class="more-button">
<button type="button" class="open-button">More <i class="fa fa-chevron-circle-down" aria-hidden="true"></i></button>
</div>
</div>
</section>
<section class="last-section partner-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>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<script src="./js/index.js"></script>
</body>
</html>