-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (97 loc) · 3.54 KB
/
Copy pathindex.html
File metadata and controls
110 lines (97 loc) · 3.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Webpage title displayed on browser tab -->
<title>Martin Portfolio</title>
<!-- .CSS file sheet link -->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<!-- Header controlling page title and links -->
<header>
<h1>Portfolio of Work --- Adam Martin</h1>
<nav>
<ul>
<li>
<!-- Link to the portfolio picture and about me list -->
<a href="#PhotoAndAboutMe">About Me</a>
</li>
<li>
<!-- Link to application section starting at the featured app (larger picture) -->
<a href="#MainApp">My Work</a>
</li>
<li>
<!-- Link to the footer for contact information -->
<a href="#Footer">Get in Touch</a>
</li>
</ul>
</nav>
</header>
<body>
<!-- PhotoAndAboutMe class controls portfilio photo and about me unordered list display -->
<div id="PhotoAndAboutMe" class="PhotoAndAboutMe">
<!-- Portfolio photo -->
<div class="Pic">
<img src="Assets/Profile Pic.png" alt="Throughly enjoy being bad at chess">
</div>
<!-- About me list items -->
<div class="AboutMeList">
<h1>About Me</h1>
<ul>
<li>
Age: 30
</li>
<li>
Education: Aeronautical and Ocean Engineering B.S., Virginia Tech (2015)
</li>
<li>
Employer: Textron Specialized Vehicles
</li>
<li>
Job: Sr. Industrial Engineering and Innovation Manager
</li>
<li>
Hobbies: Video Games, Finding New Resturants, Horror Movies
</li>
<li>
Current Residence: Augusta, Georgia, U.S.A.
</li>
</ul>
</div>
</div>
<!-- MainApp controls the large featured app image and link to functioning application -->
<div id="MainApp" class="MainApp">
<a href="https://amartinvt.github.io/MartinWeek1HomeworkRepo/"><img src="Assets/Horiseon Screenshot HW1.png" alt="Project #1"></a>
<div class="ImageLabel">Featured App: Horiseon Website</div>
</div>
<!-- SecondAppRow controls the left column and right column images below the main app [CURRENTLY A PLACEHOLDER] -->
<div class="SecondAppRow">
<div class="SecondAppRowLeft">
<img src="Assets/AppComingSoon.png" alt="Check back in shortly!">
</div>
<div class="SecondAppRowRight">
<img src="Assets/AppComingSoon.png" alt="Check back in shortly!">
</div>
</div>
<!-- Controls the footer of the webpage containing contact information -->
<div id="Footer" class="Footer">
<!-- Footer header -->
<h1>
Get In Touch
</h1>
<ul>
<li>
EMAIL: amartin80108@gmail.com
</li>
<li>
LINKEDIN: https://www.linkedin.com/in/adam-martin-0350b89b/
</li>
<li>
BUSINESS CELL: (214)-470-9391
</li>
</ul>
</div>
</body>
</html>