-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
128 lines (106 loc) · 4.71 KB
/
product.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/site.webmanifest">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<!-- CSS Main -->
<link rel="stylesheet" href="css/style.css">
<!-- Title -->
<title>Nicola Macchitella</title>
</head>
<body>
<!-- Nav -->
<nav class="navigation" id="navigation">
<div class="navigation__container">
<!-- Menu -->
<div class="navigation__menu">
<ul class="navigation__menu-ul">
<li class="active"><a href="product.html">Product</a></li>
<li><a href="content.html">Content</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="bio.html">Bio</a></li>
</ul>
</div>
<!-- END Menu -->
<!-- Logo -->
<div class="navigation__logo">
<a class="navigation__logo-link" href="index.html">
Nicola Macchitella
</a>
</div>
<!-- END Logo -->
<!-- Social -->
<div class="navigation__social">
<a href="https://www.linkedin.com/in/nicola-macchitella/" target="_blank" class="navigation__social-link">
<img src="img/icon/iconmonstr-linkedin.svg" alt="linkedin">
</a>
<a class="navigation__social-link navigation__social-link_imbd" href="https://www.imdb.com/name/nm1722619/" target="_blank">
<img src="img/icon/brand_imdb_icon.svg" alt="imbd">
</a>
</div>
<!-- END Social -->
</div>
</nav>
<!-- END Nav -->
<!-- Nav Mobile -->
<nav class="nav-mobile" id="nav-mobile">
<div class="nav-mobile__container">
<!-- Logo -->
<div class="nav-mobile__logo">
<a class="navigation__logo-link" href="index.html">
Nicola Macchitella
</a>
</div>
<!-- END Logo -->
<!-- Hamburger -->
<div class="nav-mobile__hamburger close">
<span></span>
<span></span>
</div>
<!-- END Hamburger -->
</div>
</nav>
<!-- END Nav Mobile -->
<!-- Product -->
<section class="product">
<div class="container">
<div class="row">
<div class="col">
<h1 class="product__title">Product Leader</h1>
<p class="product__text">Skilled in combining both creative ideas and quantitative approaches, since 2017 Nicola has been working with world leading tech companies researching new trends, sizing market opportunities, forecasting returns, directing cross-functional projects, prioritizing strategies, defining MVPs, extracting directional insights from data analysis and bringing products from ideation to market. ( <a href="https://www.linkedin.com/in/nicola-macchitella/" target="_blank">Linkedin</a>)</p>
<div class="text-center">
<img class="product__img" src="img/logos.png" class="rounded" alt="Nicola Macchitella">
</div>
</div>
</div>
</div>
</section>
<!-- END Product -->
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row justify-content-center">
<div class="col">
<p class="text-center">
<a class="footer__email" href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
</div>
</footer>
<!-- END Footer -->
<!-- JavaScript Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- JS Mine -->
<script src="js/mine.js"></script>
</html>