-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
77 lines (71 loc) · 3.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
<title>Responsive</title>
</head>
<body>
<div class="header">
<div class="navbar">
<div class="row">
<div class="col-1 offset"></div>
<div class="col-s-4 col-3 ownName">
<h2>Edgar Burelo</h2>
</div>
<div class="col-2 offset col-of"></div>
<div class="col-s-8 col-5">
<div class="linkContainer">
<ul class="hedul">
<li class="hedli border1 begin1"><a href="index.html">About</a></li>
<li class="hedli border1"><a class="onIt" href="portfolio.html">Portfolio</a></li>
<li class="hedli"><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="col-1 offset"></div>
</div>
</div>
</div>
<div class="content">
<div class="row">
<div class="col-1 offset"></div>
<div class="col-s-12 col-10 contentContainer">
<h2 class="contetHeadding">Portfolio</h2>
<hr>
<div class="row">
<div class="col-s-4 col-4 imgContainer img1">
<a target="_blank" href="https://github.com/EdgarBurelo/Word-Guess-Game" class="textContainer">Hangman (GitHub Repository)</a>
<a target="_blank" href="https://edgarburelo.github.io/Word-Guess-Game/" class="textContainer3">Hangman (Deployed)</a>
</div>
<!-- <div class="col-s-4 col-4"></div> -->
<div class="col-s-4 col-4 imgContainer img2">
<a target="_blank" href="https://github.com/EdgarBurelo/unit-4-game" class="textContainer">RPG Game (GitHub Repository)</a>
<a target="_blank" href="https://edgarburelo.github.io/unit-4-game/" class="textContainer3">RPG Game (Deployed)</a>
</div>
<div class="col-s-4 col-4 imgContainer img3">
<a target="_blank" href="https://github.com/EdgarBurelo/TriviaGame" class="textContainer">Trivia Game (GitHub Repository)</a>
<a target="_blank" href="https://edgarburelo.github.io/TriviaGame/" class="textContainer3">Trivia Game (Deployed)</a>
</div>
<div class="col-s-4 col-4 imgContainer img4">
<a target="_blank" href="https://github.com/shamatik/food2u" class="textContainer">Food2U (GitHub Repository)</a>
<a target="_blank" href="https://shamatik.github.io/food2u/" class="textContainer3">Food2U (Deployed)</a>
</div>
<div class="col-s-4 col-4 imgContainer img5">
<a target="_blank" href="https://github.com/EdgarBurelo/RPS-Multiplayer" class="textContainer">Rock paper Scissors (GitHub Repository)</a>
<a target="_blank" href="https://edgarburelo.github.io/RPS-Multiplayer/" class="textContainer3">Rock paper Scissors (Deployed)</a>
</div>
</div>
</div>
<div class="col-4 offset"></div>
</div>
</div>
<footer class="footer">
<div class="upFooter"></div>
<div class="downFooter"><p>Copyright ©</p></div>
</footer>
</body>
</html>