-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
35 lines (23 loc) · 1.05 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
<?php include "includes/header.php";?>
<!-- START LEFT COL ////////////////////////////// -->
<section>
<h2 class="pageID">Welcome</h2>
<!-- MAKE SURE YOU GET YOUR (3) IMAGES SAVED INTO YOUR IMAGES FOLDER -->
<img src="images/Edwin.jpg" class="desktop" id="desktop" alt="edwin" />
<img src="images/board-games.jpg" class="phone" alt="board game" />
<p><strong>Hi, my name is Edwin Ho</strong> and I'm a second year student in the AA computer science program at seattle central community college. I was born and raised in Seattle.</p>
</section>
<!-- END LEFT COL //////////////////////////// -->
<!-- START RIGHT COL /////////////////////////////////// -->
<aside >
<h3>My hobbies</h3>
<img src="images/cards.png" class="tablet" alt="cards" />
<ul>
<li>video games</li>
<li>magic the gathering trading card game</li>
<li>writing</li>
<li>drawing</li>
</ul>
</aside>
<!-- END RIGHT COL ///////////////////////////////////// -->
<?php include "includes/footer.php";?>