-
Notifications
You must be signed in to change notification settings - Fork 0
/
bookmobile.html
110 lines (83 loc) · 5.46 KB
/
bookmobile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Codingsteps.org</title>
<meta name="description" content="Codingsteps.org is a platform for anyone to learn basic skills of coding for free.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon and CSS -->
<link rel="shortcut icon" href="images/favicon.svg" type="imgae/x-icon">
<link rel="stylesheet" href="CSS/style.css">
<link rel="stylesheet" href="CSS/fonts.css">
<link rel="stylesheet" href="CSS/dashboard.css">
<link rel="stylesheet" href="CSS/slideshow.css">
<!-- JavaScript -->
<script src="JS/Header.js" type="text/javascript" defer></script>
<script src="JS/Footer.js" type="text/javascript" defer></script>
<script src="JS/slideshow.js" defer></script>
<script src="JS/main.js" defer></script>
<!-- Google Ads -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1615781386315365"
crossorigin="anonymous"></script>
</head>
<body id="Home">
<header-component></header-component>
<!--front-->
<div class="dashboard_wrapper">
<!-- <img class="tutorial_tag" alt="tutorials_tag" src="images/tutorials_tag.svg"> -->
<div class="dashboard" >
<div class="border" >
<br>
<span class="beg_picture">
<img src="images/Bookmobile/bus.jpg" class="thumbnail">
</span>
<br>
<br>
<p class="lessons" >
<block class="lessons" style="padding:2rem;"><bold style="font-size:x-large; font-weight: bold;">U.S.</bold> Embassy Bookmobile in Tserovani is a library on wheels, which rotates according to the schedule in 3 IDP settlements of the Mtskheta-Mtianeti region.
The program aims to promote cooperation and partnership between the United States and Georgia, raise IDP community awareness about American culture, history, politics, traditions and values.
U.S. Embassy Bookmobile is equipped with books in English about American literature, government system, history, and culture. There is also available free Internet, audio and video material, feature and documentary films.
The U.S. Embassy Bookmobile is also equipped with a free discussion space that gives the opportunity to talk about the US constitution, exchange programs, American sports, US holidays and so on.
The U.S. Embassy Bookmobile supports interested people in the English language and American culture. The U.S. Embassy Bookmobile operates American poetry, sports, video, photo and other clubs, there are involved students who want to improve their English language or are just interested in American culture and traditions.
</block>
</p>
<br><br>
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/Bookmobile/146721221_4073411549338104_729060165297189841_n.png" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/Bookmobile/screenshot.png" style="width:100%">
<div class="text"></div>
</div>
<!-- Next and previous buttons -->
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
<br>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
</div>
</div>
<p class="lessons" >
<block class="lessons" style="padding:2rem;">
<bold style="font-size:x-large; font-weight: bold;">As</bold> one of the clubs of the U.S. Embassy Bookmobile, our programming club has two teachers that includes myself(Kipung Park) and Dani. I teach basic python from fundamental syntaxes to conditionals, iterations, etc. Then, Dani broadly teaches computer science related topics such as computer visions, data structures, and how the Internet works. We help our students to be familiar with the topics that relate to computer science and teach them to code in Python. We have been already teaching more than one school year, and we recently started to shift toward project based learning which will now help the students to actually code on their own.
</block>
</p>
<br>
<br>
<a href="bookmobile_student_projects"><h3>Look at our Projects!😆</h3></a>
</div>
</div>
</div>
</div>
<!---->
<footer-component></footer-component>
</body>
</html>