-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
46 lines (43 loc) · 1.73 KB
/
header.php
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
<!DOCTYPE html>
<!--
This is the header for a resume webiste created for CSS 405 Advanced Internet,
USM Summer 2017
Created by Courtney Kirkham
Creation Date: 25 July 2017
Changed to .php: 27 July 2017
-->
<html>
<head>
<link href="style.css" type="text/css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="myScript.js"></script> <!--Links to my script file-->
<title>Courtney Kirkham | Home </title>
</head>
<body>
<div class="wrapper">
<div class="header">
<h1>Courtney Kirkham</h1>
</div>
<div class="sub-wrapper">
<div class="leftSide">
<div class="navigation">
<h3>Navigation</h3>
<ul class="navText">
<li><a href="index.php">Home</a></li>
<li><a href="#formSection" id="contactMe">Contact</a></li>
<li><a href="#internShipXP" id="showInternshipXP">Internship Experience</a></li>
<li><a href="#profSum" id="showProfessionalSum">Professional Summary</a></li>
<li><a href="#presentations" id="showPresentations">Presentations</a></li>
<li><a href="#communityInvolv" id="showCommunityInvolv">Community Involvement</a></li>
<li><a href="#education" id="showEd">Education</a></li>
<li><a href="#techSkills" id="showTechSkillz">Technical Skills</a></li>
<li><a href="#internShipXP" id="showAll">Show All</a></li>
<li><a href="messages.php">Messages</a></li> <!--Messages Link-->
<li><a href="resources/Courtney_Kirkham_Resume.pdf" target="_blank">Download Resume</a></li> <!-- Download pdf-->
</ul>
</div>
</div>
<div class="rightSide">
<div class="photoBanner">
<img src="images/CourtneyKirkhamPhoto.jpg" alt="Photo of Courtney Kirkham"/>
</div>