-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
110 lines (107 loc) · 4.96 KB
/
index.php
File metadata and controls
110 lines (107 loc) · 4.96 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php include('includes/header.php');?>
<div id="wrapper">
<div id="hero">
<img
class="profile"
src="images/isaac.jpg"
alt="Isaac touching the top of the effel tower"
/>
<section>
<h2>Welcome to Isaac's Portal Home Page!</h2>
<p>
My name is Isaac Jimenez. I am currently enjoying the programming
side of web development. Growing up, the world wide web was always a
magical place. It was a free resource for learning anything you ever
wanted and seeing any place in the world.
</p>
<p>
My personal hobbies are learning about different disciplines. Web
development has been the only realm where my interests in
psychology, philosophy, economics and the arts are put into
practice.
</p>
</section>
</div>
<!-- End Hero -->
<main>
<section>
<h3>Week 1: Development Environment Screenshots</h3>
<h4>MAMP Screenshot</h4>
<img
src="images/setupScreenshot.jpg"
alt="Screenshot of MAMP on Windows desktop"
/>
<h4>Error Screenshot</h4>
<img
src="images/errorScreenshot.jpg"
alt="Screenshot of php error displayed"
/>
</section>
</main>
<aside>
<h2>Class Exercises</h2>
<h3>Week 1:</h3>
<ul>
<li>
<a
href="https://github.com/IsaacJrTypes" target="_blank"
title="Opens Github profile in new tab"
>
GitHub Profile
</a>
</li>
</ul>
<h3>Week 2:</h3>
<ul>
<li><a href="weeks/week2/var.php" title="Link to var.php">var.php</a></li>
<li><a href="weeks/week2/currency-logic.php" title="Link to currency-logic.php">currency-logic.php</a></li>
<li><a href="weeks/week2/currency.php" title="Link to currency.php">currency.php</a></li>
<li><a href="weeks/week2/hereDoc.php" title="Link to hereDoc.php">hereDoc.php</a></li>
</ul>
<h3>Week 3:</h3>
<ul>
<li><a href="weeks/week3/arrays.php" title="Link to arrays.php">arrays.php</a></li>
<li><a href="weeks/week3/date.php" title="Link to date.php">date.php</a></li>
<li><a href="weeks/week3/if-else.php" title="Link to if-else.php">if-else.php</a></li>
<li><a href="weeks/week3/switch.php" title="Link to switch.php">switch.php</a></li>
<li><a href="weeks/week3/index.php" title="Link to index.php">index.php</a></li>
<li><a href="weeks/week3/for-loop.php" title="Link to for-loop.php">for-loop.php</a></li>
</ul>
<h3>Week 4:</h3>
<ul>
<li><a href="weeks/week4/form1.php" title="Link to form1.php">form1.php</a></li>
<li><a href="weeks/week4/form2.php" title="Link to form2.php">form2.php</a></li>
<li><a href="weeks/week4/form3.php" title="Link to form3.php">form3.php</a></li>
<li><a href="weeks/week4/form-get.php" title="Link to form-get.php">form-get.php</a></li>
<li><a href="weeks/week4/celcius.php" title="Link to celcius.php">celcius.php</a></li>
<li><a href="weeks/week4/arithmetic-form.php" title="Link to arithmetic-form.php">arithmetic-form.php</a></li>
</ul>
<h3>Week 5:</h3>
<ul>
<li><a href="weeks/week5/currency.php" title="Link to currency.php">currency.php</a></li>
<li><a href="weeks/week5/currency2.php" title="Link to currency2.php">currency2.php</a></li>
<li><a href="weeks/week5/null.php" title="Link to null.php">null.php</a></li>
<li><a href="website/calculator-extra-credit.php" title="Link to calculator-extra-credit.php">calculator-extra-credit.php</a></li>
<li><a href="weeks/week5/currency-extra-credit.php" title="Link to currency-extra-credit.php">currency-extra-credit.php</a></li>
</ul>
<h3>Week 6:</h3>
<ul>
<li><a href="weeks/week6/form.php" title="Link to form.php">form.php</a></li>
<li><a href="weeks/week6/form2.php" title="Link to form2.php">form2.php</a></li>
<li><a href="weeks/week6/functions.php" title="Link to functions.php">functions.php</a></li>
</ul>
<h3>Week 7:</h3>
<ul>
<li><a href="weeks/week7/form3.php" title="Link to form.php">form3.php</a></li>
<li><a href="weeks/week7/random.php" title="Link to random.php">random.php</a></li>
<li><a href="weeks/week7/string.php" title="Link to string.php">string.php</a></li>
<li><a href="weeks/week7/pictures.php" title="Link to pictures.php">pictures.php</a></li>
</ul>
<h3>Week 8:</h3>
<ul>
<li><a href="weeks/week8/people.php" title="Link to people.php">people.php</a></li>
</ul>
</aside>
</div>
<!-- End wrapper -->
<?php include('includes/footer.php');?>