-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (63 loc) · 2.52 KB
/
index.html
File metadata and controls
74 lines (63 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header id="main-header">
<div class="container">
<h1>My Website</h1>
</div>
</header>
<nav id="navbar">
<div class="container">
<ul>
<li><a href="about.html">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Fun</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Sources</a></li>
</ul>
</div>
</nav>
<section id="showcase">
<div class="container">
<h1>Welcome to Code Society
</h1>
</div>
</section>
<div class="container">
<section id="main">
<h1>Welcome</h1>
<p>The Code Society Club at the American College of Sofia is made up of students with an interest towards informatics. The Club is full of enthusiastic personalities, helped by the occassional pizza party.
We have our doors wide open towards any
new members willing to join in. No amount of skill is required, only the desire to learn. And, needless to say, you'll enjoy the ride.
We work on many different group projects, such as: video games, websites, and possibly others in the future.
Personal projects are also encouraged. If you want to enter a competition, you'll receive support of many kinds from the community here.</p>
<br>
<h2>News 29/11/18</h2>
<p>
On December 20th after classes (instead of a meeting) we plan on visiting TechnoMagicLand - amazing place in Sofia Tech Park. It is magical - there are a lot of experiments. The entrance fee for children under 14 is 4 lv and for over 14 - 7 lv. If we are enough, we can ask for reductions, and we will pay the fee for kids under 14. <br> You can say if you want to come until Thursday, because I need to make a Field Trip Approval Request. <br> You will be given 2 CAS.
</p>
<h3> Interesting organization </h3>
<p> Hello! I found a organization,which gives IT lectures every week. I will go there after the club meeting. Keep in mind that you need to have a registration beforehand.
<br> <a href="https://dev.bg/registration_event/">Dev.bg</a> </p>
<h4> </h4>
</section>
<aside id="sidebar">
<center><h1> TOP 3 SCHOOLS </h1></center>
<OL>
<LI>ACS</LI>
<LI>NPMG</LI>
<LI>P4MG</LI>
</OL>
</aside>
</div>
<footer id="main-footer">
<p>Copyright © 2018 Atanas Iliev</p>
</footer>
</body>
</html>