-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
214 lines (202 loc) · 7.26 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
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link href="style.css" rel="stylesheet" />
<link href="navbar.css" rel="stylesheet" />
<link href="about.css" rel="stylesheet" />
<link href="projects.css" rel="stylesheet" />
<link href="footer.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar">
<div class="hamburger-menu">
<span>☰</span>
<ul class="navbar-container">
<li>
<a href="#welcome-section">About </a>
</li>
<li>
<a href="#projects">Projects </a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
<main>
<section id="welcome-section">
<div>
<header id="main-header">Welcome to my website</header>
<p>I am an enthusiastic self-taught front-end developer</p>
</div>
<div class="rotating-icons">
<img class="rotation" src="./assets/icons-tech/HTML5.png" />
<img class="rotation" src="./assets/icons-tech/CSS3.png" />
<img class="rotation" src="./assets/icons-tech/js.png" />
<img class="rotation" src="./assets/icons-tech/jquery.png" />
<img class="rotation" src="./assets/icons-tech/bootstrap.png" />
<img class="rotation" src="./assets/icons-tech/react.png" />
<img class="rotation" src="./assets/icons-tech/redux.png" />
</div>
</section>
<section id="projects">
<div>
<header id="projects-header">PROJECTS</header>
</div>
<div id="projects-container">
<!-- My reads -->
<div class="project-tile">
<a
href="https://my-booooks.netlify.app"
target="_blank"
>
<img
src="./assets/screenshots/my-reads-app.png"
alt="a picture shows books that are being searched"
/>
</a>
<div class="project-info">
<h2>MyReads</h2>
<p>
Keep track of your books with this web app by simply adding your
books to relevant shelves.
</p>
<p>Tech Stack: <strong>React</strong>.</p>
<!-- <div class="project-link">
<a href="https://github.com/merv-e/my-books" target="_blank">Repository</a>
<a href="https://my-booooks.netlify.app" target="_blank">Demo</a>
</div> -->
</div>
</div>
<!-- Employee Poll -->
<div class="project-tile">
<a
href="https://github.com/merv-e/employee-polls-project"
target="_blank"
>
<img
src="./assets/screenshots/employee-poll-app.png"
alt="a screenshot of the employee-poll-app"
/>
</a>
<div class="project-info">
<h2>Employee Poll App</h2>
<p>
Would you like your employers to work more efficiently as a team
while having fun? It's possible with this app! To have the
option to create, vote polls etc?
</p>
<p>Tech Stack: <strong>Bootstrap, React, Redux, Jest</strong>.</p>
</div>
</div>
<!-- Continental Fusion Bistro -->
<div class="project-tile">
<a
href="https://github.com/merv-e/continental-fusion-bistro"
target="_blank"
>
<img
src="./assets/screenshots/continental-fusion-bistro.jpg"
alt="a screenshot of the website"
/>
</a>
<div class="project-info">
<h2>Continental Fusion Bistro</h2>
<p>
This application allows you to seamlessly add and remove meals
from your cart, mimicking the experience of ordering food
online. Once you have added the desired meals, you can review
your selections by clicking on 'Your Cart'. To explore more,
click on the image.
</p>
<p>
Tech Stack:
<strong> React, CSS, Firebase</strong>.
</p>
</div>
</div>
<!-- MovieFinder -->
<div class="project-tile">
<a href="https://merv-e.github.io/MovieFinder/" target="_blank">
<img
src="./assets/screenshots/movie-finder.jpg"
alt="a screenshot of the website"
/>
</a>
<div class="project-info">
<h2>MovieFinder</h2>
<p>
MovieFinder is a straightforward application designed to search
for movies using a user-input search query. The underlying API
powering this project is
<a href="https://www.themoviedb.org" target="_blank"
>The Movie DB</a
>. To explore more, click on the image.
</p>
<p>
Tech Stack:
<strong>HTML, CSS, vanilla JS</strong>.
</p>
</div>
</div>
<!-- Other small projects -->
<!-- Markdown Previewer -->
<div class="project-tile">
<a href="https://codepen.io/merv-e/full/QWrepbm" target="_blank">
<img
src="./assets/screenshots/markdown-previewer.jpg"
alt="a screenshot of the markdown previewer"
/>
</a>
<div class="project-info">
<h2>Markdown Previewer</h2>
<p>
Would you like what you write to be converted to markdown? Here
is a basic but and efficient app for you to do it. A fundamental
tutorial is also added.
</p>
<p>Tech Stack: <strong>HTML, CSS and React.</strong>.</p>
</div>
</div>
<!-- SEE MORE OF MY PROJECTS -->
<div class="see-more-btn">
<a href="https://github.com/merv-e" target="_blank">
<button>See more</button>
</a>
</div>
</div>
</section>
</main>
<footer id="contact">
<header>CONTACT ME</header>
<div class="contact-container">
<ul>
<li>
<a href="https://github.com/merv-e" target="_blank">
<img src="./assets/contact-icons/github.png" />
</a>
</li>
<li>
<a href="https://twitter.com/mbustun" target="_blank">
<img src="./assets/contact-icons/twitter.png" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/mbustun/" target="_blank">
<img src="./assets/contact-icons/linkedin.png" />
</a>
</li>
</ul>
</div>
<div class="owner">
<span>Created by Merve @2023</span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>