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
|
<?php include('_init.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <?php include('_head.php'); ?> <link href="css/style_k.css?v=<?=time();?>" type="text/css" rel="stylesheet"> <style> .navbar-default { background-color: #000000 !important; border-color: #e7e7e7 !important;; } </style> </head>
<body> <?php include('_header.php') ?>
<?php include('_dialog.php') ?>
<div class="ProfileContent"> <div class="Profilecontainer"> <div class="row"> <div class="col-md-12"> <h1 class="tc"><?=_lang("About Us")?></h1> <hr>
<?php if($langcode == "en"){ ?>
<p> MusicCircle aims to provide the best matching services between music tutors and potential students. Nowadays, we usually connect with music tutors in music studio or by referral in which you have no idea about the tutors before learning. MusicCircle breaks the tradition and you can now view tutors’ portfolio and look for the tutor that best suits you online. </p>
<p> To guarantee the quality of our tutors, our music professionals will check against the tutors’ qualification. With the aid of technology, MusicCircle helps our tutors for effective matching, timetable and after class activities. </p>
<div> Features of MusicCircle<br> <ul class="dashed"> <li>Direct communication between students and tutors via MusicCircle</li> <li>Tutor quality assurance</li> <li>Students know more about their learning progress via MusicCircle</li> <li>Tutors have a better student management via MusicCircle</li> </ul> </div>
<p> In a long run, MusicCircle would like to build up a platform which gathers musicians together to enhance its culture and development. </p>
<?php }else{ ?> <p> 音樂圈 (MusicCircle) 之成立,旨於為有興趣學習音樂之學生及卓越音樂導師提供教學配對服務。 傳統地,我們只能到音樂教室或經朋友介紹去接觸小量的音樂導師,音樂圈打破了這個傳統的界限, 讓學生及導師能於網絡上按自己的要求及喜好溝通及作配對。 </p>
<p> 為了確保導師的教學質素,音樂圈的音樂專業團隊會先審核導師的資歷。 </p>
<p> 我們亦希望利用科技,方便導師及學生配對、安排課堂及進行課後練習,亦能讓導師專心教學。 </p>
<div> 音樂圈之特色<br> <ul class="dashed"> <li>學生可跟導師於網上直接對話,從而挑選心儀之導師</li> <li>導師資歷經嚴格審查</li> <li>透過網上平台,方便學生查看學習進度</li> <li>透過網上平台,方便導師管理上課時間表</li> </ul> </div>
<p> 長遠而言,我們希望可以藉着音樂圈聚集各路音樂人,方便大家於平台上作不同的音樂交流, 推動音樂文化及其發展。
</p> <?php } ?> </div> </div> </div> </div> <? include('_footer.php') ?>
</body> </html>
|