-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (108 loc) · 2.93 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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Anthony Barone | Software Engineer</title>
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<link
href="./lib/normalize.css/normalize.css"
media="all"
rel="stylesheet"
type="text/css"
/>
<link
href="./webfonts/ss-social-regular.css"
media="all"
rel="stylesheet"
type="text/css"
/>
<link
href="./css/dist/home.css"
media="all"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/css?family=Raleway:200,400"
rel="stylesheet"
type="text/css"
/>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-NDC3P17TT5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-NDC3P17TT5");
</script>
</head>
<body>
<header class="header">
<div class="wrapper clearfix">
<div class="hero-img">
<img class="img-circle" src="./img/profile.jpg" />
</div>
<div class="hero-text">
<h1 class="name">Anthony Barone</h1>
<p class="bio">
I enjoy writing software that is both elegant and impactful. Enjoys an
active team environment. Music lover, musician.
</p>
<ul class="social-links unstyled">
<li>
<a href="https://github.com/tonybaroneee" title="GitHub"
><i class="ss-icon">octocat</i></a
>
</li>
<li>
<a href="https://www.linkedin.com/in/tonybaroneee" title="LinkedIn"
><i class="ss-icon" style="position: relative; top: -1px"
>linkedin</i
></a
>
</li>
<li>
<a href="https://twitter.com/tonybaroneee" title="Twitter"
><i class="ss-icon">twitter</i></a
>
</li>
</ul>
</div>
</div>
<div class="notch"></div>
</header>
<section class="work light">
<h2 class="section-header">Places I've Worked</h2>
<div class="wrapper clearfix">
<ul class="tiles unstyled">
<li class="tile google">
<a href="https://firebase.com/">
<img src="./img/badge-google.png" />
<div class="name">Google</div>
</a>
</li>
<li class="tile">
<a href="https://twitter.com/">
<img src="./img/badge-twitter.png" />
<div class="name">Twitter</div>
</a>
</li>
<li class="tile">
<a href="http://www.dealer.com/">
<img src="./img/badge-ddc.png" />
<div class="name">Dealer.com</div>
</a>
</li>
</ul>
</div>
<div class="notch"></div>
</section>
<footer class="clearfix">
<a target="_blank" href="./doc/anthony_barone_resume.pdf"
>Download resume (.pdf)</a
>
</footer>
</body>