-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjects.html
75 lines (64 loc) · 3.53 KB
/
Projects.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="portfolio.css">
</head>
<body>
<div class="container">
<header>
<h1>Work Hard Play Hard</h1>
</header>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="blackjack/BlackJack.html">Play Blackjack!</a>
<a class="navbar-brand" href="Pokemon/Pokemon.html">Play Pokemon!</a>
</div>
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="Projects.html">Projects</a></li>
<li><a href="Resume.html">Resume</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="gallery">
<div class="top">HTML</div>
<a target="framename" href="images/HTML.PNG">
<img src="images/HTML.PNG" alt="HTML" width="300" height="200">
</a>
<div class="desc">Using HTML I was able to mess around and created a couple of intereactive and fun games. You can play the games I made at the top of this page.</div>
</div>
<div class="gallery">
<div class="top">Unreal Engine</div>
<a target="framename" href="images/UNREAL.PNG">
<img src="images/UNREAL.PNG" alt="Unreal" width="300" height="200">
</a>
<div class="desc">Unreal Engine is a game developer library(game engine) that help you create your own video game without spending too much time. On my spare time, I would follow tutorials on youtube on on how to make my own video games. I created a project using Unreal Engine which allow me to simply move around, jumping, and egage in melee combat with my character.</div>
</div>
<div class="gallery">
<div class="top">Unity</div>
<a target="framename" href="images/Unity.PNG">
<img src="images/Unity.PNG" alt="Unity" width="300" height="200">
</a>
<div class="desc">Unity is another game engine that I came across when looking up youtube videos on how to make video games. Using Unity, my friends and I created a small game project and we released it on the Google Play store which can be found <a href="https://play.google.com/store/apps/details?id=com.AboveAscension.FeedorStarve">here.</a>
</div>
</div>
<div class="gallery">
<div class="top">RPG Maker</div>
<a target="framename" href="images/RPGMaker.PNG">
<img src="images/RPGMaker.PNG" alt="RPGMaker" width="300" height="200">
</a>
<div class="desc">Last summer, my friends and I decided to make a role playing horror game using RPG Maker which is also a game engine that help you with making 2D RPG(role playing game). We didn't finish our game but I did learn a lot from working as a team and also how hard it is to actually agree on a single story line.</div>
</div>
<div class="gallery">
<div class="top">Lua, C++</div>
<a target="framename" href="images/Gmod.jpg">
<img src="images/Gmod.jpg" alt="gmod" width="300" height="200">
</a>
<div class="desc">A few years ago, my friend and I created a private server for a popular game called Garry Mod. We work on how to host our own game server and our own game website using hosting services like HostGator and firebase. I got to learn Lua and C++ when working on the server. We also were able to make profit from the donations from the players in our server.</div>
</div>
</div>
</body>
</html>