-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (95 loc) · 4.1 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
<!DOCTYPE html>
<html>
<!--HEAD-->
<head>
<!--META-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--TITLE-->
<title>Matt Brigidi</title>
<!--LINK-->
<link rel="canonical" href="https://www.mattbrigidi.com" />
<link rel="icon" href="/assets/matt_brigidi_dot_com.jpg">
<link rel="stylesheet" href="/style/style.css">
<!-- Load an icon library to show a hamburger menu (bars) on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-GQGC5GKEKL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-GQGC5GKEKL');
</script>
<!--BODY-->
<body>
<div class="header">
<!--IMAGE-->
<a href="https://www.mattbrigidi.com">
<img class="me" src="assets/brigidi_head_shot.jpg">
</a>
<!--NAV BAR-->
<nav class="topnav" id="myTopnav">
<!--NAV OPTIONS-->
<!-- <li><a href="/"> Home</a></li>
<li>|</li> -->
<a href="/about/"> About</a>
<a href="/tutorials/"> Tutorials</a>
<a href="/contact/"> Contact</a>
<!-- Responsive Menu Icon -->
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</nav>
</div>
<!--TEXT-->
<div class="container">
<h1>
Hello, I'm Matt Brigidi
</h1>
<p>
I am a <b>data analytics professional</b> with over a <b>decade</b> of experience working in digital media.
</p>
<p>
My current title is the <b>Director of Innovation & Solutions</b> at <b>Condé Nast</b>.
I've spent time working in <b>Content</b>, <b>Finance</b>, <b>Operations</b>,
& <b>Strategy</b> and have enjoyed learning about how a modern business is structured.
</p>
<p>
In my free time, I enjoy academic pursuits — regardless of whether I am the student or the teacher. You can find some examples of my work in the
<a href="/tutorials/"><b>Tutorials</b></a> section of this site or by visiting my
<a href="https://www.youtube.com/@mattbrigidi"><b>YouTube</b></a> channel.
</p>
<p>
I am passionate about <b>problem solving</b> and informed <b>decision making</b>.
I aspire to have my days filled with opportunity rather than obligation because I think an opportunity is something you get to do; while an obligation is something you have to do.
</p>
<p>
Please <a href="/contact/"><b>reach out</b></a> if you have an idea that you're excited about — I love collaborating!
</p>
</div>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
function toggleMenu() {
const nav = document.getElementById("myTopnav");
nav.classList.toggle("responsive");
}
// Close the menu if clicked outside
document.addEventListener("click", function (event) {
const nav = document.getElementById("myTopnav");
const isClickInside = nav.contains(event.target);
if (!isClickInside && nav.classList.contains("responsive")) {
nav.classList.remove("responsive");
}
});
</script>
</body>
</html>