-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
54 lines (50 loc) · 1.93 KB
/
experience.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mike Tallerico's Experience</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Mike Tallerico</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
</ul>
</div>
<header>
<img src="images/RobotMike-02.jpg" alt="Vector Robot of Mike Tallerico" class="profile-image">
<h1 class="tag name">Hello, I’m Mike.</h1>
<p class="tag location">My home is New York, New York.</p>
</header>
<main>
<section>
<h2>Experience:</h2>
<ul class="aside-ul">
<li>
Equipment Engineer: Applied Materials
<ul>
<li>Was in charge of installing, maintaining, upgrading physical vapor deposition equipment in an R&D environment supporting 10 and 7nm processes.</li>
</ul>
</li>
<li>
Technical Director: Valley Christian Church
<ul>
<li>In charge of all things technical at a multisite church.</li>
</ul>
</li>
</ul>
</section>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/mtallerico1" target="_blank" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/michael-tallerico-03580339" target="_blank" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/mtallerico1" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">© 2017, Mike Tallerico</p>
</footer>
</body>
</html>