-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_old.html
62 lines (54 loc) · 2.38 KB
/
index_old.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
<!DOCTYPE html>
<html lang="en">
<!--
File: /~aking/public_html/index.html
GUI Programming I Assignment 2: Creating Your First Web Page
Adam M. King, UMass Lowell Computer Science Student
uml.cs username: aking
Updated September 17, 2019
Description: This file serves as a basepoint for the assignments to be
completed in GUI Programming I. It will include some information about
myself as well as links to other assignment pages done in the future.
-->
<head>
<meta charset="utf-8">
<title>
Adam King First Website
</title>
</head>
<body>
<!-- Intro header to say what the point of this page is -->
<h1>Adam King's First Website (Assignment 2)</h1>
<p> This website will serve as a basepoint for GUI I assignments as well as give a brief description of who I am.</p>
<!-- About me section will contain a picture of me, education, hobbies and social links -->
<h2>About me</h2>
<!-- links to a picture of me so viewers know what I look like (sort of, the picture is 4 years old) -->
<img src="images/me.jpg" alt="me">
<!-- Brief brackground of my education. Just uses simple header and paragraph tags -->
<h3> Education</h3>
<p>  I graduated from Billerica Memorial High School in 2016.<br>
  I am currently an undergrad at UMass Lowell working towards a Bachelor's degree in Computer Science.<br></p>
<!-- Hobbies. Used an unordered list format -->
<h3> Hobbies</h3>
<ul>
<li>Going to class</li>
<li>Checkers</li>
<li>Creating lists</li>
</ul>
<!-- Links to some of my social media. It didn't need to be in a table but I wanted to try the table tag -->
<h3> Social</h3>
<table>
<tr>
<td><p>  <a href="https://www.linkedin.com/in/adam-king-uml">Linkedin</a></p></td>
</tr>
<tr>
<td><p>  <a href="https://github.com/adk3798">Github</a></p></td>
</tr>
</table>
<!-- This will serve as a directory to see the pages for each assignment. For now it just links back to this page as
this is my only page right now. -->
<h2>Assignments</h2>
<p> <a href="http://weblab.cs.uml.edu/~aking/index_old.html">Homework 2</a></p>
</body>
</html>