-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
37 lines (29 loc) · 961 Bytes
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title> Portfolio </title>
<link rel="stylesheet" href="styles.css">
<script src = "javascript.js"></script>
</head>
<body>
<nav style = "text-align: center">
<table class = "center2" style="width:100%">
<tr>
<th><a href="gwcport.html"> Home</a></th>
<th><a href="portfolio.html"> My Portfolio</a></th>
<th><img src="portfoliologo.png" style = "width:366px; height:245px"></th>
<td><a href="resume.html"> My Resume</a></td>
<td><a href="contact.html"> Contact Me</a></td>
</tr>
</table>
</nav>
<p style = "text-align: center ; font-size:35px" id = "caption"> Runner </p>
<table class = "center3">
<tr>
<th><img style= "float:right" onclick = "prevPic()" src = "left.png"></th>
<th><img style= "float:right; width: 600px; height: 400px" id = "currentimage" src = "runner.png" ></th>
<th><img style= "float:right" onclick = "nextPic()" src = "right.png"></th>
</tr>
</table>
</body>
</html>