generated from DanteAlonsoHT/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
251 lines (251 loc) · 14 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raffle Website</title>
<link rel="icon" href="img/compainesLogo.svg" type="image/svg+xml">
<!--Bootstrap CSS-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!--Import Boxicons as a Font-->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="preconnect" href="https://fonts.gstatic.com">
<!--Lato Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400&display=swap" rel="stylesheet">
<!--Import Lato Font-->
<style>
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400&display=swap');
</style>
</head>
<body>
<!-- Navbar section STARTS -->
<header>
<div class="container-fluid first-navbar">
<nav class="d-none d-md-block navbar-light">
<div class="container-lg d-flex flex-row-reverse">
<a class="text-decoration-none ps-3" href="#">Logout</a>
<a class="text-decoration-none ps-3" href="#">My Page</a>
<a class="text-decoration-none ps-3" href="#">English</a>
<a class="text-decoration-none ps-3" href="#"><i class='bx bxl-twitter'></i></a>
<a class="text-decoration-none ps-3" href="#"><i class='bx bxl-facebook'></i></a>
</div>
</nav>
</div>
<nav class="navbar navbar-expand-md navbar-light second-navbar px-3 px-md-0">
<div class="container-md p-0">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo03" aria-controls="navbarTogglerDemo03" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#"><img src="img/compainesLogo.svg" alt="companies-logo" height="86"></a>
<div class="collapse navbar-collapse" id="navbarTogglerDemo03">
<ul class="navbar-nav me-auto mb-2 mb-md-0 d-block d-md-flex justify-content-end w-100">
<li class="nav-item p-2">
<a class="nav-link" id="activeNowHome" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item ps-md-4 p-2">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item ps-md-4 p-2">
<a class="nav-link" href="tickets.html">Tickets</a>
</li>
<li class="nav-item ps-md-4 p-2">
<a class="nav-link" href="#">Program</a>
</li>
<li class="nav-item ps-md-4 p-2">
<a class="nav-link" href="#">Sponsors</a>
</li>
<li class="nav-item m-0 ps-md-4">
<button class="Navbar-button" type="button">Enroll it</button>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Navbar section ENDS -->
<main>
<!--MAIN-HOME section STARTS-->
<section>
<div class="container-fluid hero-page">
<div class="container-md">
<div class="row">
<div class="col-12 col-md-10 mt-5">
<article class="mt-5 pt-4 main-section">
<div class="d-block mt-5 pt-5">"Hello! Computer Visioner"</div>
<h1 class="mt-2">MASTER COMPUTER VISION'S BOOTCAMP</h1>
<p class="border border-white m-0 my-2 p-2">Welcome to enjoyfull adventure to become a computer vision engineer, we are excited to have you in our online bootcamp.</p>
<h2 class="fs-3 fs-md-1 mt-4 text-dark fw-bold">2021.10.15(THU) ~ 16(FRI)</h2>
<p class="fs-5 mt-3 pb-5">@ ComputerVZ Companie - León, GTO.</p>
<div class="pb-5"></div>
</article>
</div>
</div>
</div>
</div>
</section>
<!--MAIN-HOME section ENDS-->
<!--About section STARTS-->
<section id="about-section">
<div class="container-fluid about-page p-0">
<div class="container-md">
<div class="row">
<div class="col-12 p-0 m-0">
<article class="mt-3 pt-5 about-section">
<h2 class="mt-4 py-2">MASTER COMPUTER VISION'S BOOTCAMP</h2>
<div class="my-4 about-line"></div>
</article>
<div class="about-cards mt-5">
<div class="about-item">
<a href="#"><img src="img/036-computer.svg" alt="about-image1" height="84"></a>
<div class="d-flex flex-column">
<h3>About</h3>
<p>You just need one computer and programming fundamentals to start our course from scratch to hero in computer vision area.</p>
</div>
</div>
<div class="about-item">
<a href="#"><img src="img/022-geography.svg" alt="about-image1" height="84"></a>
<div class="d-flex flex-column">
<h3>Anywhere</h3>
<p>Study from anywhere according to your current location, everything is going to be online with flexible times to complete it.</p>
</div>
</div>
<div class="about-item">
<a href="#"><img src="img/018-elearning.svg" alt="about-image1" height="84"></a>
<div class="d-flex flex-column">
<h3>Learning</h3>
<p>You can complete the master in your own pace, but we provide you deadlines to have consideration if you want to use it</p>
</div>
</div>
<div class="about-item">
<a href="#"><img src="img/021-exam.svg" alt="about-image1" height="84"></a>
<div class="d-flex flex-column">
<h3>Final Exam</h3>
<p>In order to get a certificate, you are going to do a test and you must have a grade over 70% to get your certificate.</p>
</div>
</div>
</div>
<a href="#" class="d-block text-white text-center my-5 fs-5">SEE THE COMPLETE PROGRAM</a>
</div>
</div>
</div>
</div>
</section>
<!--About section ENDS-->
<!-- Featured speakers section STARTS -->
<section>
<div class="container-md py-5">
<div class="row mt-2">
<h3 class="text-center">Featured Speakers Computer Vision</h3>
<div class="my-3 about-line"></div>
</div>
<div class="row my-3">
<div class="col-12 col-md-6 py-3">
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker1.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker2.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker3.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 py-3">
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker4.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker5.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
<div class="featured-speaker-card d-flex">
<div class="position-relative image-spaker">
<img class="position-absolute top-0 start-0" src="img/squares.jpg" alt="squares" height="56">
<img class="position-absolute bottom-0 end-0 speaker-img" src="img/speaker6.jpg" alt="speaker1">
</div>
<div class="ms-3 text-speaker">
<h4>Name Speaker</h4>
<span>Speaker's occupations</span>
<p class="text-speaker-line"></p>
<p class="speaker-bio">He studied in Oxford California at Data Scientis Carreer, but now he is teacher at most common libraries in Python for Data Scientist.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Featured speakers section ENDS -->
</main>
<!-- Footer STARTS -->
<footer>
<div class="container-md">
<div class="row mt-3">
<div class="col-12">
<ul class="d-flex justify-content-center m-0 p-0">
<li><a href="#"><i class='bx bxl-facebook-circle'></i></a></li>
<li><a href="#"><i class='bx bxl-twitter'></i></a></li>
<li><a href="#"><i class='bx bxl-youtube'></i></a></li>
</ul>
</div>
</div>
<div class="row text-center my-3">
<p>Copyright © 2021 ComputerVZ - Final Capstone Module HTML/CSS</p>
</div>
<div class="row border my-3 py-2 px-0 d-md-flex">
<div class="text-center">Icons made by <a class="text-decoration-none" href="https://www.flaticon.com/authors/good-ware" title="Good Ware">Good Ware</a> from <a class="text-decoration-none" href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div>
<div class="text-center">Design idea by <a class="text-decoration-none" href="https://www.behance.net/adagio07">Cindy Shin | GUI & Graphic Designer</a> </div>
</div>
</div>
</footer>
<!-- Footer ENDS -->
<!--Bootstrap JS-->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
</body>
</html>