-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
131 lines (110 loc) · 4.56 KB
/
portfolio.html
File metadata and controls
131 lines (110 loc) · 4.56 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title> Porfolio</title>
<link rel="stylesheet" type="text/css" href="assets\css\reset.css">
<link rel="stylesheet" type="text/css" href="assets\css\style.css">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Reinaldo Llano</a>
<nav>
<a href="index.html">About Me</a>
<a href="portfolio.html">Portolio</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>Portfolio</h1>
<div class="work">
<a href="https://corkboard2018.herokuapp.com/">
<img src="./assets/images/corkboard.JPG" class="image" alt="Cork Board">
</a>
<h3>Cork Board</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/Crystal-Collectors/">
<img src="./assets/images/Crystals2.JPG" class="image" alt="Crystals Game">
</a>
<h3>Crystal's Collector</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/TriviaGame">
<img src="./assets/images/trivia game.jpg" class="image" alt="Trivia Game">
</a>
<h3>Trivia Game</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/GifTastic-Game/">
<img src="./assets/images/myGiftastic.jpg" class="image" alt="Giftastic Game">
</a>
<h3>Superhero Gifs</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/burger-store/">
<img src="./assets/images/bonkerburger.JPG" class="image" alt="Bonker Burgers">
</a>
<h3>Bonker Burgers</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/Train-Scheduler/">
<img src="./assets/images/train-scheduler.JPG" class="image" alt="Rock Paper Scissors">
</a>
<h3>Train Scheduler</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/LIRI-Node-App/">
<img src="./assets/images/LIRI-Bot.JPG" class="image" alt="LIRI-Bot">
</a>
<h3>LIRI-Bot Node App</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/My-Storefront/">
<img src="./assets/images/My-Storefront.JPG" class="image" alt="My Storefront">
</a>
<h3>My Store Front</h3>
</div>
<div class="work">
<a href="http://www.llanoreinaldo.com/Friend-Finder/">
<img src="./assets/images/friend-finder1.jpg" class="image" alt="Friend Finder">
</a>
<h3>Friend Finder</h3>
</div>
<div class="work">
<a href="https://hillaryblavin.github.io/Flick-Pick/">
<img src="./assets/images/flickpick2.png" class="image" alt="Flick-Pick">
</a>
<h3>Flick-Pic</h3>
</div>
<div class="work">
<a href="https://llanoreinaldo.github.io/Hangman-Game/">
<img src="./assets/images/rpdr game.JPG" class="image" alt="Hangman">
</a>
<h3>RPDR Hangman</h3>
</div>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with Me</h2>
<a href="https://llanoreinaldo.github.io">
<img src="assets/images/github.png" class="social media" alt="Github">
</a>
<a href="https://www.linkedin.com/in/llanoreinaldo/">
<img src="assets/images/linkedin.png" class="social media" alt="Linked In">
</a>
<a href="https://stackoverflow.com/story/basic-portfolio">
<img src="assets/images/stack overflow.png" class="social media" alt="Stack Overflow">
</a>
</div>
</section>
</div>
</body>
<footer>
<div class="container">
© Copyright 2018 Reinaldo Llano, Jr.
</div>
</footer>
</html>