-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhourofcode.html
More file actions
186 lines (149 loc) · 6.76 KB
/
hourofcode.html
File metadata and controls
186 lines (149 loc) · 6.76 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hour of Code</title>
<link rel = "icon" href = "img/acm_logo.png" type = "image/x-icon">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link href="style.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<style>
body {
/* background: url("img/teach_ses.jpg") no-repeat center center fixed; */
background-color: black;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.carousel-item {
height: 0.1vh;
max-width: auto;
min-height: 500px;
background: no-repeat center center scroll;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
</style>
</head>
<body>
<!-- Navigation -->
<div class="container-fluid padding" id="header">
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container-fluid"><a href="#" class="navbar-brand"><img src="img/logo.png" alt="logo" height="70"></a>
<button type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler navbar-toggler-right"><i class="fa fa-bars"></i></button>
<div id="navbarSupportedContent" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a href="index.html#home" class="nav-link text-uppercase font-weight-bold">Home</a></li>
<li class="nav-item"><a href="index.html#about" class="nav-link text-uppercase font-weight-bold">About Us</a></li>
<li class="nav-item active"><a href="index.html#events" class="nav-link text-uppercase font-weight-bold">Events</a></li>
<li class="nav-item"><a href="index.html#team" class="nav-link text-uppercase font-weight-bold">Team</a></li>
<li class="nav-item"><a href="index.html#footer" class="nav-link text-uppercase font-weight-bold">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
</div>
<br/><br/>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 col-xs-12 col-sm-12 col-lg-12 col-12">
<div class="card border-0 shadow my-5 p-5 bg-white text-black">
<div class="img-animtion">
<img src="img/headpic.jpg" alt="HoC" class="card-img-top">
</div>
<div class="card-body text-center ">
<h4 align="left" class="card-title">Hour of Code</h4>
<p class="card-text text-justify">We, the members of ACM PESUECC Student Chapter conducted the 'Hour of Code' event at The Amaatra Academy on the 13th and 14th of December 2019.<br>
Our major goal was to bring interest in the students towards Computer Science. We introduced game application development in an interactive way to class 6 students and taught them the logic behind it.
<br>The students of 6th std were introduced to the concepts of
Scratch and were told the benefits of pair programming
Post the briefing session, the students began the hands on session on "Game development using MIT app inventor" where students developed "Space Invader" Game. ACM PESU-ECC Team
is thankful to ACM India fro giving us the opportunity to conduct the Hour of Code event.</p>
<hr/><p class="card-text text-justify">Venue: The Amaatra Academy
<br>Date: December 13th and 14th, 2019
</p>
<div class="card-text text-justify" style="height: 20px"></div><hr/>
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/teampic.jpg"
alt="Team">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/teach_ses.jpg"
alt="Teach">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/queslab.jpg"
alt="Questions">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleFade" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleFade" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!--- Footer -->
<footer class="footer-distributed" id="footer">
<div class="footer-left">
<img src="img/logo.png" alt="logo" height="100 ">
<img src="img/pes.PNG" alt="logo"height="80">
<br>
<p class="footer-company-name text-white">ACM PESU-ECC © 2020</p>
</div>
<div class="footer-center">
<!-- <div class="card" style="width:300px";>
<div class="card-body">
<h4 class="card-title">Contact Us</h4> -->
<div class="location">
<i class="fas fa-map-marker-alt fa-lg"></i>
<p><a href="https://goo.gl/maps/y77ZCWSxWFko2uj89">PES University Electronic City</a></p>
</div>
<br>
<div>
<i class="far fa-envelope fa-lg"></i>
<p><a href="mailto:[email protected]" class="mail">[email protected]</a></p>
</div>
<!-- </div>
</div> -->
</div>
<div class="footer-right">
<!-- <div class="card" style="width:300px";>
<div class="card-body"> -->
<!-- <h4 class="card-title">About the company</h4> -->
<!-- <p class="card-text">Lorem ipsum dolor sit amet, consectateur adispicing elit. Fusce euismod convallis velit, eu auctor lacus vehicula sit amet.</p> -->
<div class="col-12 social padding">
<a href="https://www.facebook.com/acmpesuec"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/acmpesuecc/"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/acmpesuecc"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/acmpesu?lang=en"><i class="fab fa-twitter"></i></a>
<a href="https://zw.linkedin.com/company/acm-pesu-ecc"><i class="fab fa-linkedin"></i></a>
<!-- </div>
</div> -->
</div>
<!-- <p class="footer-company-about">
<span>About the company</span>
Lorem ipsum dolor sit amet, consectateur adispicing elit. Fusce euismod convallis velit, eu auctor lacus vehicula sit amet.
</p> -->
</div>
</footer>
<script src="js/main.js">
</script>
</body>
</html>