-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (150 loc) · 7.84 KB
/
index.html
File metadata and controls
167 lines (150 loc) · 7.84 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h1>Troy Walker's Web Page</h1>
</header>
<nav>
<ol>
<li>
<a href="#bio">Bio</a>
</li>
<li>
<a href="#hobbies">Hobbies</a>
</li>
<li>
<a href="#courses">Courses</a>
</li>
<li>
<a href="#contactForm">Contact</a>
</li>
</ol>
</nav>
<section>
<h2 class = "bio" id="bio">Biography</h2>
<p>
Hello, my name is Troy Walker, and I am a junior computer science student at Southern Methodist University.
I am currently working as a Residential Assistant in Boaz Commons, and an Outdoor Adventure Leader.
Right now, I am looking for an internship in the cyber security field.
I am shooting for an internship that will allow me to develop my red team skills.
</p>
<flexbox>
<ol>
<li>
<h2>Hobbies</h2>
</li>
<li>
Rock Climbing
</li>
<li>
Video Games
</li>
<li>
Cooking
</li>
<li>
Riding my unicycle
</li>
<li>
Pen. Testing
</li>
</ol>
<div id="courses">
<table>
<tr>
<th>Courses</th>
<th>Department</th>
<th>Class Number</th>
</tr>
<tr>
<td>
Programming Languages
</td>
<td>CS</td>
<td>
3342
</td>
</tr>
<tr>
<td>Graphical User Interface</td>
<td>CS</td>
<td>3345</td>
</tr>
<tr>
<td>Software Engineering Principle</td>
<td>CS</td>
<td>4345</td>
</tr>
<tr>
<td>Principles of Computer Science</td>
<td>CSE</td>
<td>1341</td>
</tr>
<tr>
<td>Programming Concepts</td>
<td>CSE</td>
<td>1342</td>
</tr>
<tr>
<td>Assembly Language Programming & Machine Organization</td>
<td>CSE</td>
<td>2240</td>
</tr>
<tr>
<td>Data Structures</td>
<td>CSE</td>
<td>2341</td>
</tr>
<tr>
<td>Discrete Comp Structures</td>
<td>CSE</td>
<td>2353</td>
</tr>
<tr>
<td>Database Concepts</td>
<td>CSE</td>
<td>3330</td>
</tr>
<tr>
<td>Calculas 1</td>
<td>MATH</td>
<td>1337</td>
</tr>
<tr>
<td>Calculas 2</td>
<td>MATH</td>
<td>1338</td>
</tr>
<tr>
<td>Intro to Engineering Design</td>
<td>KNW</td>
<td>2300</td>
</tr>
</table>
</div>
</flexbox>
</section>
<article>
<form id="contact" name="contactFrom">
<div id="contactForm" class="contactForm">
<h2>Contact Form</h2>
<label for="questions"><h3>Please send me any questions you have!</h3></label>
<br>
<input type="text-area" name="questions" id="questions" />
</div>
<input type="submit">
</form>
</article>
<footer>
<img src="https://www.smu.edu/-/media/Site/StudentAffairs/RecSports/OutdoorAdventures/Staff/Troy-Walker---Copy.jpg?h=400&w=300&la=en&hash=913F56629721A68EFC2635D24ABA3E7A" alt="Profile Pic" />
<div class = "clear"></div>
<div class="fade">
Contact Information: trwalker@smu.edu
</div>
</footer>
</body>
</html>