-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
44 lines (38 loc) · 1.47 KB
/
index.php
File metadata and controls
44 lines (38 loc) · 1.47 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
<?php
$title = "About Me";
include "includes/_header.php";
?>
<div class="image" id="bigme"><p>This will be a massive image of me!</p></div>
<article>
<div class="textbox">
<h2 id="dev">The Developer</h2>
<p>
After I started to learn C++, I developed an interest in programming languages,
going as far as to dive straight into the deep end with C++ and JavaScript. Although I
enjoyed doing so, I decided it would be more productive to start with something more basic.<br><br>
As a result, I now enjoy working with HTML & CSS and I am getting involved with PHP to
enrich my web development experience but I want to learn more!
</p>
</div>
</article>
<br>
<article>
<div class="textbox">
<h2 id="tech">The Techie</h2>
<p>
I enjoy building/upgrading and generally just plain fiddling with Computers and I will
take any excuse to try and get inside a PC case. I learnt to work with computers when I was
young, finally building my own from scratch when I was 18.<br>
Quite often friends and family will ask me for advice or help fixing their computers and laptops
whether it might be upgrading or buying a new one (or on the odd occasion, for help when their
cat turns their screen upside down!).
</p>
</div>
</article>
<br>
<div id="contact">
<p>
Good news, everyone! You can follow me on twitter! <span><a href="https://twitter.com/intent/user?screen_name=Monk1989">@monk1989</a></span>
</p>
</div>
<?php include "includes/_footer.php"; ?>