-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
executable file
·133 lines (107 loc) · 4.72 KB
/
about.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
<!-- Free Portfolio Theme by Matt Borchert - http://www.mattborchert.com -->
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/pure-min.css"/>
<link type="text/css" rel="stylesheet" href="css/grids-responsive-min.css"/>
<link type="text/css" rel="stylesheet" href="css/styles.css"/>
<link rel="stylesheet" href="css/font-awesome.min.css">
<title>About Me</title>
</head>
<body>
<!--[if lte IE 8]>
<link rel="stylesheet" href="css/grids-responsive-old-ie-min.css">
<![endif]-->
<!--[if gt IE 8]><!-->
<link rel="stylesheet" href="css/grids-responsive-min.css">
<!--<![endif]-->
<!-- Header -->
<div class="navigation pure-g" id="menu">
<div class="brand pure-u-1 pure-u-md-1-2">
<div class="pure-menu">
<a href="index.html" class="pure-menu-heading brand-name">Nicola Carpeggiani</a>
<a href="#" class="custom-toggle" id="toggle"><s class="bar"></s><s class="bar"></s></a>
</div>
</div>
<div class="pure-u-1 pure-u-md-1-2">
<div class="pure-menu pure-menu-horizontal custom-can-transform">
<ul class="pure-menu-list">
<li class="pure-menu-item"><a href="index.html" class="pure-menu-link">Portfolio</a></li>
<li class="pure-menu-item"><a href="about.html" class="pure-menu-link">About</a></li>
<li class="pure-menu-item"><a href="https://creativemarket.com/mattborchert?u=mattborchert" target="_blank" class="pure-menu-link">Store</a></li>
</ul>
</div>
</div>
</div>
<script>
(function (window, document) {
var menu = document.getElementById('menu'),
WINDOW_CHANGE_EVENT = ('onorientationchange' in window) ? 'orientationchange':'resize';
function toggleHorizontal() {
[].forEach.call(
document.getElementById('menu').querySelectorAll('.custom-can-transform'),
function(el){
el.classList.toggle('pure-menu-horizontal');
}
);
};
function toggleMenu() {
// set timeout so that the panel has a chance to roll up
// before the menu switches states
if (menu.classList.contains('open')) {
setTimeout(toggleHorizontal, 500);
}
else {
toggleHorizontal();
}
menu.classList.toggle('open');
document.getElementById('toggle').classList.toggle('x');
};
function closeMenu() {
if (menu.classList.contains('open')) {
toggleMenu();
}
}
document.getElementById('toggle').addEventListener('click', function (e) {
toggleMenu();
});
window.addEventListener(WINDOW_CHANGE_EVENT, closeMenu);
})(this, this.document);
</script>
<!-- About Section -->
<div class="about pure-g">
<div class="pure-u-1 pure-u-md-1-3">
<img class="pure-img" src="images/PIC.jpg" />
<div class="about-wrapper">
<div class="pure-u-1">
<ul class="about-social-icons">
<li><a href=" https://www.facebook.com/NicolaCarpeggiani1988" target="_blank"><i class="fa fa-facebook fa-2x fa-fw"></i></a></li>
<li><a href="https://soundcloud.com/nicosofaking" target="_blank"><i class="fa fa-soundcloud" aria-hidden="true"></i></i></a></li>
</ul>
</div>
<div class="pure-u-1">
<ul class="about-info">
<li><h3>Nicola Carpeggiani</h3></li>
<li><h3><a href="mailto:[email protected]">nc1768(at)nyu.edu</a></h3></li>
</ul>
</div>
</div>
</div>
<div class="pure-u-1 pure-u-md-2-3">
<div class="about-margin">
<h1>About Me</h1>
<p>Born and raise in Italy in 1988. Studied at Università La Sapienza in Rome and worked as Audio Engineer and Music producer. Recently graduated from Interactive Telecommunications Program NYU, he focused his on the creation of music instruments and gears that combines music production and education.
</div>
</div>
</div> <!-- end about pure-g -->
<!-- Footer Elements -->
</ul>
</div>
<div class="pure-u-1-2">
<p class="footer-credit">
Website by <a href="http://www.nicolacarpeggiani.com" target="_blank">Nicola Carpeggiani</a>
</p>
</div>
</div>
</body>
</html>