-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
286 lines (284 loc) · 9.67 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!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" />
<link rel="stylesheet" href="static/styles.css" />
<title>My website</title>
</head>
<body>
<!-- Vertical Navbar with github link -->
<nav class="vertical-navbar">
<a href="https://github.com/benante">
<img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/>
</a>
</nav>
<section id="introSection">
<header class="header">
<!-- Horizontal navbar -->
<div class="nav">
<ul>
<li><a href="#aboutSection">About</a></li>
<li><a href="#projectsSection">Projects</a></li>
<li><a href="#contactsSection">Contacts</a></li>
</ul>
</div>
</header>
<!-- Intro -->
<div class="intro">
<h1>Hello, my name is</h1>
<h1 class="highlight">Tommaso Orlandi.</h1>
<h1>I am studying to become a web developer</h1>
<p><em>From philosophy to brewing, it's now time to code.</em></p>
</div>
</section>
<!-- Main Container -->
<div class="container">
<section id="aboutSection">
<!-- About me section grid -->
<h1 class="title-section">About me</h1>
<hr />
<div class="grid about">
<div class="right-column">
<img
class="portrait"
src="static/images/meBlackWhite.jpeg"
alt="me with my bike"
/>
</div>
<div class="left-column">
<p>
I began studying coding in 2020, as a hobby. I started initally
with CS50 "Introduction to computer science", a free online course
by Harvard University. I am not going to lie: I found it exremely
hard and frustrating. One thing I really like though: the mental
challenge and the huge satisfaction when you see your code
working.
</p>
<p>
Now let's take one step back: before I started to work in
hospitality (and then in the beer industry) I studied philosophy
at uni. There is one thing I realized I really miss from those
years and it' s the active thinking, the mental effort. Coding
provides me that, in huge doses I' d say. That's why I like it.
</p>
<p>
Why would I like to be a web developer then? I' d like to be a web
developer because I love challenges, but also because it seems to
me so multidisciplinary, so versatile. Who doesn't need a website
nowadays??
</p>
<p>
Now I' m ready to finally say that, after two years of playing
around, I' m ready to fully commit to this world!
</p>
</div>
</div>
</section>
<!-- Project Section -->
<section id="projectsSection">
<!-- CARDS -->
<h1 class="title-section">My projects</h1>
<hr />
<!-- Hobbies -->
<div class="grid projects" id="gallery-projects">
<div class="card">
<h3>Hobby Page</h3>
<img
class="preview"
src="static/images/hobbies.png"
alt="hobbies-page"
/>
<p>
Simple web page with some basic html,css and a hint of javascript
</p>
<div class="links">
<img
class="icon preview-btn"
title="preview"
src="static/images/preview.png"
alt="preview"
/>
<a href="https://github.com/benante/Hobbies-page.git"
><img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/></a>
<a href="https://benante.github.io/Hobbies-page/ "
><img
class="icon"
title="web page"
src="static/images/world-wide-web.png"
alt="www"
/></a>
</div>
</div>
<!-- Gallery -->
<div class="card">
<h3>Gallery Project</h3>
<img
class="preview"
src="static/images/gallery.png"
alt="gallery-projects"
/>
<p>Learning how to use flexbox for a more complex layout</p>
<div class="links">
<img
class="icon preview-btn"
title="preview"
src="static/images/preview.png"
alt="preview"
/>
<a href="https://github.com/benante/Project-Gallery.git"
><img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/></a>
<a href="https://benante.github.io/Project-Gallery/"
><img
class="icon"
title="web page"
src="static/images/world-wide-web.png"
alt="www"
/></a>
</div>
</div>
<div class="card">
<!-- Comment box -->
<h3>Comment Box</h3>
<img
class="preview"
src="static/images/comment_box.png"
alt="comment_box"
/>
<p>Use a form to submit a comment through dom manipulation</p>
<div class="links">
<img
class="icon preview-btn"
title="preview"
src="static/images/preview.png"
alt="preview"
/>
<a href="https://github.com/benante/Comment-box.git"
><img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/></a>
<a href="https://benante.github.io/Comment-box/"
><img
class="icon"
title="web page"
src="static/images/world-wide-web.png"
alt="www"
/></a>
</div>
</div>
<div class="card">
<!-- Movie data -->
<h3>Movie Data</h3>
<img
class="preview"
src="static/images/movie_data.png"
alt="movie_data"
/>
<p>Populate a web page with data from a javascript object</p>
<div class="links">
<img
class="icon preview-btn"
title="preview"
src="static/images/preview.png"
alt="preview"
/>
<a href="https://github.com/benante/project_n4_movieData.git"
><img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/></a>
<a href="https://benante.github.io/project_n4_movieData/"
><img
class="icon"
title="web page"
src="static/images/world-wide-web.png"
alt="www"
/></a>
</div>
</div>
<div class="card">
<!-- Game -->
<h3>Game</h3>
<img class="preview" src="static/images/game.png" alt="game" />
<p>Rock paper scissors based on html, css & javascript</p>
<div class="links">
<img
class="icon preview-btn"
title="preview"
src="static/images/preview.png"
alt="preview"
/>
<a href="https://github.com/benante/project_n5_game.git"
><img
class="icon"
title="github repo"
src="static/images/github.png"
alt="github"
target="_blank"
/></a>
<a href="https://benante.github.io/project_n5_game/"
><img
class="icon"
title="web page"
src="static/images/world-wide-web.png"
alt="www"
/></a>
</div>
</div>
</div>
</section>
<!-- Contact section -->
<section id="contactsSection">
<h1 class="title-section">Contacts</h1>
<hr />
<div class="form">
<form class="form-container" action="">
<label for="name">Name</label>
<input type="text" />
<label for="email">Email</label>
<input type="email" />
<label for="subject">Subject</label>
<input type="text" />
<label for="message">Message</label>
<textarea name="" id="" cols="30" rows="10"></textarea>
<button type="submit">Submit</button>
</form>
</div>
</section>
<script src="app.js"></script>
<footer class="footer">
<!-- Icons attribution -->
All icons created by
<a href="https://www.flaticon.com/authors/freepik" title="icons"
>Freepik - Flaticon</a
>
</footer>
</div>
</body>
</html>