-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (117 loc) · 5.44 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!--Setting card title-->
<title>Matteo Martinelli's personal website</title>
<!--Setting favicon-->
<link rel="icon" href="assets/images/favicon/favicon_smile.ico">
<!--Importing stylesheets-->
<link rel='stylesheet' href='assets/css/global/global-fonts.css'/>
<link rel='stylesheet' href='assets/css/global/global-elements.css'/>
<link rel='stylesheet' href='assets/css/global/global-style.css'/>
<link rel='stylesheet' href='assets/css/pages/index-style.css'/>
<!--Meta tags-->
<!--Setting charset-->
<meta charset="UTF-8"/>
<!--Disabling zooming capabilities-->
<meta name="viewport" content="width=device-width, initial-scale=1.0,
maximum-scale=1.0, user-scalable=no" />
<!--Properties for website sharing and preview-->
<meta property="og:title" content="Eng. Matteo Martinelli"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://wmex91.github.io/" />
<meta property="og:image" content="https://media.licdn.com/dms/image/C4D16AQG9fN5tgxIp4g/profile-displaybackgroundimage-shrink_350_1400/0/1623667752796?e=1679529600&v=beta&t=E0eWIUUChYfg9do9yaedYfihKlNDDBbFUNhj0lrxysA"/>
</head>
<body>
<nav class="menu" id="landing-page-menu">
<a class="menu-button" id="home-page" href="index.html">
<img src="assets/images/icons/menu/light/home-light.svg"
alt="home"/> </br>
<!-- Home -->
</a>
<a class="menu-button" id="bio-page" href="biography/">
<img src="assets/images/icons/menu/light/text-account-light.svg"
alt="bio"/> </br>
<!-- Biography -->
</a>
<a class="menu-button" id="projects-page" href="projects/">
<img src="assets/images/icons/menu/light/hammer-screwdriver-light.svg"
alt="projects"/></br>
<!-- Projects -->
</a>
<a class="menu-button" id="cv-page"
href="assets/docs/cv/CV 4.3 ENG - Giu 2023 - with Certificates.pdf"
target="_blank" rel="noopener noreferrer">
<img src="assets/images/icons/menu/light/cv-light.svg"
alt="resume"/> </br>
<!-- Resumé -->
</a>
<a class="menu-button" id="contacts-page" href="">
<img src="assets/images/icons/menu/light/email-fast-light.svg"
alt="contact"/> </br>
<!-- Contacts -->
</a>
<!--
<a href="/s2i/" target="_blank" rel="noopener noreferrer"
style="border: 1px var(--color-palette-dark-foreground) solid;"></a>
-->
</nav>
<!-- Presentation page - start -->
<div class="section" id="presentation-container">
<figure id="profile-image">
<img src="assets/images/personal/personal-pic-resized.svg"
alt="Mr. Matteo Martinelli"/>
</figure>
<a class="home-button" id="homepage"
href="../index.html">
<div id="profile-name">
<h2>Matteo Martinelli</h2>
<h3>Management Engineer</h3>
<h3>🏭Industry 4.0 Researcher🏭</h3>
</div>
</a>
<nav class="icon-buttons-box">
<!-- Github -->
<a class="icon-button" id="github"
href="https://github.com/matteo-martinelli"
target="_blank" rel="noopener noreferrer">
<img src="assets/images/icons/landing-page/github-light-transparent-bordered.svg">
<!--my repos-->
</a>
<!-- Linkedin -->
<a class="icon-button" id="linkedin"
href="https://www.linkedin.com/in/matteo-martinelli/?locale=en_US"
target="_blank" rel="noopener noreferrer">
<img src="assets/images/icons/landing-page/linkedin-bordered.svg">
<!--my linkedin-->
</a>
<!-- Skype -->
<a class="icon-button" id="skype"
href="skype:live:wmatte2005?chat">
<img src="assets/images/icons/landing-page/skype-bordered.svg">
<!--my skype-->
</a>
</nav>
<article>
<p>
I am a PhD candidate at the "Intelligent Industry
Engineering"
<a href="http://www.iii.unimore.it/site/home.html"
target="_blank"
rel="noopener noreferrer">
<b style="color: #b0b0bb;">Uni</b><b
style="color: #E42A04;">MORE</b>
</a>
course. I am part of the Pervasive
Computing research group and I deal with the application of
causality learning models to the world of industrial
processes.
</p>
</article>
</div>
<!-- Presentation - end -->
<div class="spacer"></div>
<script src="assets/js/config.js"></script>
<script src="assets/js/contact-alert.js"></script>
</body>
</html>