-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (32 loc) · 1.1 KB
/
index.php
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
<?php
$banner = "banner";
$title = "Home Page";
include 'head.php';
?>
<div id="ad1">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-6252446871628988";
/* Tommos HomePage */
google_ad_slot = "5110509643";
google_ad_width = 120;
google_ad_height = 240;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<h1>Welcome</h1>
Please select any item from the menu above to find out more about me and this site
<p>
I am a 4th year Computer Science and Artificial Intelligence student at the University of Sheffield, on this website I have a few examples of my work from first year Com1004 and a link to one of my current projects.
</p>
<p>
My current university modules include: Darwin (joint research project for a leading formula 1 team), Genesys (a joint software development project in ruby) and iOS development (a team project to design an app, made with <a href="http://mgoddard.net">Mike Goddard</a>)
</p>
<p>
My CV can be requested when necessary please contact [email protected]
</p>
<?php
include 'foot.php';
?>