-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
142 lines (133 loc) · 5.77 KB
/
registration.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Think</title>
<link rel="shortcut icon" href="../src/Think.ico" />
<link href="../style.css" rel="stylesheet" type="text/css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="../script.js"></script>
<script>
$(window).off('beforeunload');
$(function() {
$('.start_hide').hide();
});
function slide(x) {
if ($("#" + x).is(":hidden")) {
$(".reg").slideUp("slow");
$("button").removeClass("button_active");
$("#" + x).delay(100).slideDown("slow");
} else {
$("#" + x).slideUp("slow");
}
}
</script>
<style type="text/css">
.buttons {
text-align: center;
margin-bottom: 10px;
}
button {
width: 11%;
height: 40px;
border: 0 none;
border-radius: 5px;
cursor: pointer;
text-align: center;
line-height: 1.3;
font-size: 1.1em;
color: black;
text-transform: none;
font-weight: 500;
transition: all 60ms ease-in-out;
background-color: #4E7E6B;
}
button:hover {
text-decoration: underline;
}
.button_active {
background-color: #ff8000;
}
/*===OVERIDE POST===*/
</style>
</head>
<body>
<!--====================HEADER===================-->
<header>
<div class = "top_bar">
<img src="../src/think_header.jpg">
<a href="../home.html" title=""><img style="position:absolute; left:2%; top:10%; z-index: 2; width:15%;" src="../src/THINK-Logo-Vector-Animated.gif"></a>
<div class="social">
<a href="https://www.facebook.com/ThinkLearningCentre" target="_blank"><img src="../src/social/facebook.png"></a>
<a href="https://twitter.com/ThinkLC" target="_blank"><img src="../src/social/twitter.png"></a>
<a href="https://www.linkedin.com/company/ans-gnosis-ltd" target="_blank"><img src="../src/social/linkedin.png"></a>
</div>
</div>
<div id="nav_stay">
<div class="nav" id="nav_main">
<ul>
<li id="nav_main_1"><a href="../home.html" title="">Home</a></li>
<li id="nav_main_2"><a href="../aboutus.html" title="">About Us</a></li>
<li id="nav_main_3"><a href="../curriculum.html" title="">Curriculum</a></li>
<li id="nav_main_4"><a class="active" href="../exams.html" title="">Exams</a></li>
<li id="nav_main_5"><a href="../calendar.html" title="">Calendar</a></li>
<li id="nav_main_6"><a href="../gallery.html" title="">Gallery</a></li>
<li id="nav_main_7"><a href="../contactus.html" title="">Contact Us</a></li>
</ul>
</div>
<div class="nav_curriculum_active">
<div class="size">
<ul style="text-align:center; margin-left:0;">
<li><a class="active" style="background-color: #ff8000; color:black;" href="registration.html" title="">Registration</a></li>
<li><a href="preparation.html" title="">Preparation</a></li>
<li><a href="results.html" title="">Results</a></li>
</ul>
</div>
</div>
</div>
</header>
<!--=================BODY========================-->
<div class="page">
<div class="post post1">
<div class="buttons">
<h2>Ημερομηνίες για εξετάσεις Cambridge.</h2>
<button onclick='window.location.href = "../news.html";'>Go</button>
</div>
</div>
</div>
<!--=================FOOTER======================-->
<div class="footer">
<div class="size">
<div class="post fpost">
<a title="Cambridge Examinations" href="http://www.cie.org.uk/" target="_blank">
<img src="../src/Cambridge ESOL logo.jpg" alt="" height="80px" />
</a>
</div>
<div class="post fpost">
<a title="British Council " href="http://www.britishcouncil.org/cyprus.htm" target="_blank">
<img src="../src/British Council.jpg" alt="" height="80px" />
</a>
</div>
<div class="post fpost">
<a title="ECDL" href="http://www.ECDL.org/" target="_blank">
<img src="../src/top_logo.jpg" alt="" height="80px" />
</a>
</div>
<div class="post fpost">
<a title="Cyprus Computer Society" href="https://www.ccs.org.cy/" target="_blank">
<img src="../src/ccs new logo.jpg" alt="" height="80px" />
</a>
</div>
<div class="post fpost">
<a title="European Commision - Education & Training " href="http://ec.europa.eu/education/index_en.htm" target="_blank">
<img src="../src/eu_com_logo.jpg" alt="" height="80px" />
</a>
</div>
<div class="post fpost">
<a title="Council of Europe" href="http://www.coe.int/t/dg4/linguistic/cadre1_en.asp" target="_blank">
<img src="../src/COE-Logo-Quadri.jpg" alt="" height="80px" />
</a>
</div>
</div>
</div></body>
</html>