-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
62 lines (57 loc) · 1.97 KB
/
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
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>
<head>
<title>Portfolio</title>
<!--Link to css file -->
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<!--Body-->
<body>
<!--Nav-->
<nav>
<h1 class="h1Setting">Hector Candelaria</h1>
<a class="aSetting hoverCSS" href="index.html">About</a>
<a class="aSetting hoverCSS" href="portfolio.html">Portfolio</a>
<a class="aSetting hoverCSS" href="contact.html">Contact</a>
</nav>
<!--Contact section -->
<div id="bodyContainer">
<!--Portfolio section-->
<section id="portfolioSection">
<h2>Portfolio</h2>
<div class="imageSettings">
<img src="images/portfolio-01.jpg" class="imageSettings">
<p class="captionSettings">Hangman</p>
</div>
<div class="imageSettings">
<img src="images/portfolio-02.jpg" class="imageSettings">
<p class="captionSettings">RPG Game</p>
</div>
<div class="imageSettings">
<img src="images/portfolio-03.jpg" class="imageSettings">
<p class="captionSettings">Trivia Game</p>
</div>
<div class="imageSettings">
<img src="images/portfolio-04.jpg" class="imageSettings">
<p class="captionSettings">Rutgers Info Widget</p>
</div>
<div class="imageSettings">
<img src="images/portfolio-05.jpg" class="imageSettings">
<p class="captionSettings">Rock Paper Scissors</p>
</div>
</section>
<!--Connect section-->
<aside id="connectSection">
<h2>Connect with me</h2>
<a href="https://github.com/hcandelaria" target="_blank"><img src="images/Github.png" alt="github"></a>
<a href="https://www.linkedin.com/in/hector-candelaria-986347136/" target="_blank"><img src="images/LinkedIn.png" alt="linkedin"></a>
<a href="https://stackoverflow.com/users/7154195/hector-candelaira?tab=profile" target="_blank"><img src="images/Stackoverflow.png" alt="stackoverflow"></a>
</aside>
</div>
<!--Footer-->
<footer>
<h5>© Copyright 2017 Hector Candelaria</h5>
</footer>
</body>
</html>