-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
207 lines (201 loc) · 6.56 KB
/
index.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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!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" href="style/style.css" />
<title>Reprevise | Portfolio</title>
<link
href="https://fonts.googleapis.com/css?family=Oswald|Raleway|Muli&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="nav-container">
<nav>
<input type="checkbox" id="nav-toggle" />
<label for="nav-toggle" class="burger-menu">
<img src="imgs/menu.png" alt="" />
</label>
<div class="left-menu">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</div>
<a href="#" class="logo">Reprevise's Portfolio</a>
</nav>
</div>
</header>
<section class="section" id="home">
<div class="revamp">
<p>
This site is undergoing a revamp. A new version will be uploaded soon!
</p>
</div>
<h1>Hello there!</h1>
<hr id="first-header" />
<h3>
I am a
<span
class="txt-rotate"
data-period="1000"
data-rotate='[ "front-end web developer.", "software engineer.", "game developer." ]'
></span>
</h3>
<div id="email-link-wrapper">
<a href="mailto:[email protected]">
<div>
<i class="material-icons">email</i>
</div>
<div id="email-container">
<span>[email protected]</span>
</div>
</a>
</div>
<section id="skills">
<h1>Skills</h1>
<div id="skills-section-wrapper">
<hr id="skills-header" />
<div class="imgs-wrapper">
<div class="top-img">
<img
id="html-css-js-img"
src="imgs/html css js.svg"
alt="html/css/js"
/>
</div>
<div class="bottom-imgs">
<img
class="other-skill-img"
src="imgs/angular.svg"
alt="angular"
/>
<img class="other-skill-img" src="imgs/svelte.svg" alt="svelte" />
</div>
</div>
</div>
</section>
<div id="git-source">
<a target="_blank" href="https://github.com/EcoGames"
><img src="imgs/github.svg" alt="my github"
/></a>
<a target="_blank" href="https://github.com/EcoGames/Portfolio"
>Site Source Code</a
>
</div>
</section>
<section class="section" id="about">
<h1>About</h1>
<div class="about-text-container">
<p>
Hi there my name is Benjamin and I am a front-end web developer! I got
into coding starting with the language Lua for Roblox game
development. I then hopped over to Java to develop Minecraft plugins.
While doing that, I started to dabble in web development and went back
and forth between that and C# with Unity. I then decided to spend most
of my time to build websites for others and stopped developing games
with Unity. Now that I started web development, I started learning
some frameworks such as React, Angular and Svelte! I am also
interested in developing mobile apps using Flutter and hoping in the
future when the language is more stable that I can develop web apps
with it as well.
</p>
</div>
</section>
<section class="section" id="projects">
<h1>Projects</h1>
<div class="projectsContainer">
<div class="project">
<h2 class="projectHeading">Weather App</h2>
<img
class="projectImg"
src="imgs/projects/pure js weather.png"
alt="JS Weather Application"
/>
<div class="projectInfo">
<span class="textBold">Languages used:</span>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
<span class="textBold">Summary:</span>
<p class="projectSummary">
This app connects to the OpenWeatherMap API to give you the
weather all around the world! You can use zip codes for the US or
cities internationally!
</p>
</div>
<a
class="textBold"
target="_blank"
href="https://reprevise.github.io/Pure-JS-Weather-App/"
>View</a
>
<a
class="textBold"
target="_blank"
href="https://github.com/Reprevise/Pure-JS-Weather-App"
>Source Code</a
>
</div>
<div class="project">
<h2 class="projectHeading">Tic Tac Toe</h2>
<img
class="projectImg"
src="imgs/projects/js impossible tic tac toe.png"
alt="JS Tic Tac Toe"
/>
<div class="projectInfo">
<span class="textBold">Languages used:</span>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JS</li>
</ul>
<span class="textBold">Summary:</span>
<p class="projectSummary">
This is an impossible tic tac toe! It uses the Minimax algorithm
to make the best decisions.
</p>
</div>
<a
class="textBold"
target="_blank"
href="https://reprevise.github.io/JS-Tic-Tac-Toe/"
>View</a
>
<a
class="textBold"
target="_blank"
href="https://github.com/Reprevise/JS-Tic-Tac-Toe"
>Source Code</a
>
</div>
</div>
</section>
<section class="small-section" id="contact">
<h1>Contact</h1>
<div id="email-link-wrapper">
<a href="mailto:[email protected]">
<div>
<i class="material-icons">email</i>
</div>
<div id="email-container">
<span>[email protected]</span>
</div>
</a>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="js/smooth-scroll.js"></script>
<script src="js/front-text-anim.js"></script>
</body>
</html>