-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
156 lines (148 loc) · 4.7 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
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
<!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>JavaScript Programming Language Course</title>
<link rel="stylesheet" href="./css/about.css" />
<script type="module" src="./js/about.js"></script>
</head>
<body>
<div class="header-bar desktop-visible">
<ul>
<li>
<a href="/"
><img src="./img/socials/facebook.png" alt="Contact us on Facebook"
/></a>
</li>
<li>
<a href="/"
><img src="./img/socials/twitter.png" alt="Follow us on Twitter"
/></a>
</li>
<li><a href="/">English</a></li>
<li><a href="/">My Page</a></li>
<li><a href="/">Logout</a></li>
</ul>
</div>
<header>
<img
id="burger-menu"
src="./img/burger/burger_menu.png"
alt="Burger menu icon"
class="mobile-visible"
/>
<a href="index.html"
><img
src="./img/logo.png"
alt="JavaScript Programming Language Course Logo"
/></a>
<ul class="desktop-visible">
<li><a href="index.html">Home page</a></li>
<li><a href="/">Program</a></li>
<li><a href="/">Application for participation</a></li>
<li><a href="/">Sponsor</a></li>
<li><a href="/">News</a></li>
<li><a href="/" class="nav-button">Presentation</a></li>
</ul>
</header>
<div class="mobile-menu mobile-visible hidden">
<div class="background hidden"></div>
<div>
<a href="/"
><img
src="./img/burger/burger_menu_close.png"
alt="Close the burger menu"
/></a>
</div>
</div>
<div class="wrapper hero-wrapper">
<section id="hero">
<p>"Welcome to our course!"</p>
<h1>JavaScript Language 2022</h1>
<div class="bar"></div>
<p class="description">
Like all our courses this one focuses as well on the well-being and
learning of the students. It is a modern coruse for a nice-paced
person looking forward to learn how to program. Arrow functions?
Object destruction? Nullish-coalescent operator? If these sound
foreign to you, look no further! This is the course you want and this
is the moment to take it. Size this moment!
</p>
<p class="location">
Please contact us through email at address
<a href="mailto:[email protected]"
>
</p>
</section>
</div>
<div class="wrapper logo-wrapper">
<section id="logo">
<h2>JavaScript course 2022 Logo</h2>
<div class="bar"></div>
<p>The logo of our JavaScript Programming course</p>
<img src="./img/logo.png" alt="JavaScript course 2022 logo" />
</section>
</div>
<div class="wrapper logo-wrapper">
<section id="past-courses">
<h2>See the past courses</h2>
<div class="bar"></div>
<div class="conference-container">
<div id="python-conference">
<h2>2021</h2>
<h3>Python programming for everyone</h3>
</div>
<div id="php-conference">
<h2>2019</h2>
<h3>PHP Hypertext Processor: A circular definition</h3>
</div>
</div>
</section>
</div>
<div class="wrapper partners-wrapper mobile-visible">
<section id="partners">
<h2>Partner</h2>
<div class="bar"></div>
<div class="partners-container">
<div>
<a href="/"><img src="./img/partners/PIA.png" alt="PIA Logo" /></a>
</div>
<div>
<a href="/"
><img src="./img/partners/Korra.png" alt="Korra Logo"
/></a>
</div>
<div>
<a href="/"
><img src="./img/partners/Mozilla.png" alt="Mozilla Logo"
/></a>
</div>
<div>
<a href="/"
><img src="./img/partners/Google.png" alt="Google Logo"
/></a>
</div>
</div>
</section>
</div>
<footer>
<div>
<a href="index.html"
><img
src="./img/logo.png"
alt="JavaScript Programming Language Course Logo"
/></a>
<div>
<p>2022 JavaScript Convention</p>
<p>Some rights reserved</p>
</div>
</div>
</footer>
<a href="/" id="scrollToTop" class="hidden"
><img src="./img/totopbtn.png" alt="Scroll to the top of the page"
/></a>
</body>
</html>