-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
69 lines (66 loc) · 2.26 KB
/
Copy pathabout.php
File metadata and controls
69 lines (66 loc) · 2.26 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
<?php
session_start ();
include_once 'database/database_infos.php';
include_once 'database/Database.php';
?>
<!DOCTYPE html>
<html>
<head>
<?php include_once 'includes/head.php'; ?>
</head>
<body>
<?php include_once 'resources/form_controller.php';
include_once 'resources/navigation.php';
?>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">
Über uns <small>It's Nice to Meet You!</small>
</h1>
<p>Quizmasters ist eine Webseite von drei Lehrlingen aus Zürich. Die
Idee entstand im Jahr 2015, als gemeinsames Projekt von Chiramet
Phong Penglerd, Luca Marti und Elia Perenzin. Das Projekt begann im
Bbc (Berufsbildungscenter Zürich) und war für uns ein guter Start
in das Thema Webentwicklung/Webdesign. Auf Quizmasters.ch bieten
wir verschiedene Quiz für Jung und Alt zu diversen Themen von Sport
bis zu Games.</p>
</div>
</div>
<!-- Team Members Row -->
<div class="row">
<div class="col-lg-12">
<h2 class="page-header">Unser Team</h2>
</div>
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive center-block"
src="img/team/luca.png" alt="luca">
<h3>
Luca Marti <br><small>Zurich Airport</small>
</h3>
<p>What does this team member to? Keep it short! This is also a
great spot for social links! (Er isch en pisser hhahah)</p>
</div>
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive center-block"
src="img/team/phong.png" alt="phong">
<h3>
Chiramet Phong Penglerd <br><small>Raiffeisen Schweiz</small>
</h3>
<p>What does this team member to? Keep it short! This is also a
great spot for social links! Er isch en thai</p>
</div>
<div class="col-lg-4 col-sm-6 text-center">
<img class="img-circle img-responsive center-block"
src="img/team/elia.png" alt="elia">
<h3>
Elia Perenzin <br><small>Hewlett-Packard Enterprise</small>
</h3>
<p>What does this team member to? Keep it short! This is also a
great spot for social links! Er isch beste</p>
</div>
</div>
<hr>
<?php include_once 'resources/footer.php';?>
</body>
</html>