-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.php
More file actions
91 lines (83 loc) · 2.55 KB
/
about-us.php
File metadata and controls
91 lines (83 loc) · 2.55 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE HTML>
<html>
<head>
<?php include("includes/head.php"); ?>
</head>
<body class="<?php include("includes/bodyclass.php"); ?>">
<?php include("includes/nav.php"); ?>
<header>
<div class="content-wrapper">
<span class="icon icon_large icon_about">Ý</span>
<h1>About Us</h1>
</div>
</header>
<div class="content-wrapper">
<div class="content-section">
<h2>Team</h2>
<h3>Self proclaimed pixel pushers</h3>
</div>
<div class="content-section">
<div class="box-wrapper">
<div class="box third">
<h4>Jacob</h4>
<div id="jacob" class="thumb"></div>
<p>Co-Founder / Designer</p>
<p class="quote">"I feel like sonic running into a black hole."</p>
</div>
<div class="box third">
<h4>James</h4>
<div id="james" class="thumb"></div>
<p>Co-Founder / Developer</p>
<p class="quote">"I like chicken."</p>
</div>
<div class="box third">
<h4>Joe</h4>
<div id="joseph" class="thumb"></div>
<p>Designer</p>
<p class="quote">"He's blowing up like a balloon with a grenade in it!"</p>
</div>
</div>
</div>
<div class="content-section">
<h2>Services</h2>
<div class="table">
<h3>Web</h3>
<div class="table-row">
<div class="table-cell">Static web design</div>
<div class="table-cell">Responsive (mobile/tablet optimised) web design</div>
</div>
<div class="table-row">
<div class="table-cell">Contact forms</div>
<div class="table-cell">Content management system</div>
</div>
<div class="table-row">
<div class="table-cell">Front-end training</div>
<div class="table-cell">Maintenance</div>
</div>
<div class="table-row">
<div class="table-cell">Setup of domain</div>
<div class="table-cell">Hosting services</div>
</div>
</div>
<div class="table">
<h3>Other</h3>
<div class="table-row">
<div class="table-cell">Brand design</div>
<div class="table-cell">Marketing design</div>
</div>
<div class="table-row">
<div class="table-cell">Photography</div>
<div class="table-cell">3D modelling & animation</div>
</div>
</div>
</div>
<div class="content-section">
<h2>Background</h2>
<h3>We are all at the University of Kent studying Multimedia Technology and Design.</h3>
<p>One quiet night in Darwin College, the winds howled through the gap in the window as the keyboards rattled and the code compiled. Precise Pixels was born.</p>
</div>
</div>
<?php include("includes/footer.php"); ?>
<?php include("includes/scripts.php"); ?>
</body>
</html>