-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjects.html
94 lines (88 loc) · 2.45 KB
/
Projects.html
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
<!DOCTYPE html>
<html lang='en'>
<!--
This is the header. This is where
I define the title for this webpage,
the character set that I am using, and
a small bit of styling to give my webpage
some flair.
-->
<head>
<Title>My Projects</Title>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesheet.css">
</head>
<!--
This is the top menu bar for my website background
is common to all of my webpages.
-->
<header>
<h1>Pratt Game Studios</h1>
<ul>
<li><h3><a href="HomePage.html">Home</a></h3></li>
<li><h3><a href="AboutUs.html">About Us</a></h3></li>
<li><h3><a href="FAQ.html">FAQ</a></h3></li>
<li><h3><a href="Projects.html">Projects</a></h3></li>
<li><h3><a href="Careers.html">Careers</a></h3></li>
<li><h3><a href="ContactUs.html">Contact Us</a></h3></li>
</ul>
</header>
<!--
This is the webpage's main body
-->
<main>
<div id="wrap">
<h2> My Projects </h2>
<figure>
<figcaption>A chef from my game</figcaption>
<img class="chef" src="chef.png" alt="Chef from my game" style="width:400px;height:800px;">
</figure>
<p>
Below I have outlined some of the exciting projects that I work on!
</p>
<!--
Here I create a table outlining some of the projects I work on.
I use the <th> tag for the column headings and the <td> for each of
the table details.
-->
<table>
<tr>
<th>What?</th>
<th>When?<th>
<th>How?</th>
<th>Why?</th>
</tr>
<tr>
<td>SENSUP trainer</td>
<td>June 2020 - June 2022<td>
<td>.NET Framework, WPF</td>
<td>To train radar technicians on basic radar operations and maintenance</td>
</tr>
<tr>
<td>A3C4I trainer</td>
<td>June 2021 - January 2022<td>
<td>.NET Framework, Unity</td>
<td>To train radio operator students on basic radio maintenance procedures</td>
</tr>
<tr>
<td>NSFST trainer</td>
<td>June 2022 - Present<td>
<td>.NET Framework, C++</td>
<td>To train radio communications skills between sailors and ground personnel</td>
</tr>
<tr>
<td>My video game</td>
<td>July 2022 - Present<td>
<td>.NET Framework, Unity</td>
<td>Because I get to spend quality time with my wife (we work on it together)</td>
</tr>
</table>
</div>
</main>
<!--
This is my footer section
-->
<footer>
<p> Feel free to email me at [email protected] </p>
</footer>
</html>