-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (111 loc) · 4.86 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
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="navstyle.css">
<link href="https://fonts.googleapis.com/css?family=Tomorrow&display=swap" rel="stylesheet">
<title>John Scatena Resume</title>
</head>
<body>
<nav aria-label="Main" class="text-centered">
<ul>
<a href="#intro">Introduction</a>
<a href="#about-me">About</a>
<a href="#my-interests">Interests</a>
<a href="#my-experiences">Experience</a>
<a href="#contact-me">Contact</a>
</ul>
</nav>
<header>
<svg>
<rect x="2" y="2" rx="20" ry="20" width="145" height="145"
style="fill:whitesmoke;stroke:slategray;stroke-width:4;opacity:0.5" />
<text fill="#000" font-size="45" font-family="Tomorrow" x="15" y="60">LOGO</text>
<text fill="#000" font-size="24" font-family="Tomorrow" x="8" y="130"><a href="#contact">Contact Me</a></text>
</svg>
<div class="overlay-container">
<div class="overlay-content">
<h2>Hello my name is John Scatena</h2>
<p>Bla Bla Bla some info</p>
</div>
</div>
</header>
<main id="main-content">
<section class="section_about">
<div class="inner-container">
<div class="row">
<div class="col col-1-2">
<h2>About Me</h2>
<p>I like to automate repetitive tasks to save me time so I can concentrate on other stuff. I like the the feeling of accomplishment that comes with having saved myself some time.</p>
</div>
<div class="col col-1-2">
<img src="https://via.placeholder.com/150x150" alt="Place Holder Img">
</div>
</div>
</div>
</section>
<section class="section_my-interest">
<div class="inner-container">
<div class="row text-centered">
<div class="col col-1-1">
<h2>My Interests</h2>
<p>Work and Social Life</p>
</div>
</div>
<div class="row">
<div class="col col-1-2">
<ul>
<li>Java Script</li>
<li>Full Stack Developer</li>
</ul>
</div>
<div class="col col-1-2">
<ul>
<li>Family</li>
<li>Gave Development</li>
</ul>
</div>
</div>
</div>
</section>
<section class="section_my-experiences">
<div class="inner-container">
<div class="row text-centered">
<div class="col col-1-1">
<h2 id="my-experiences">My Experiences</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
</div>
<div class="row">
<div class="col col-1-3">
<h3>Major Learning Achievement</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="col col-1-3">
<h3>Current Job</h3>
<p>I'm currently employed at TBAISD (Traverse Bay Area Intermediate School District). I have multiple job roles here. The two main job roles are Computer Techinition and Programmer. </p>
</div>
<div class="col col-1-3">
<h3>Link to Latest Project</h3>
<p><a href="https://github.com/johne5s">My Github repositories</a></p>
<p><a href="https://support.powerschool.com/exchange/view.action?download.id=961">PowerSchool Inventory System</a></p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="inner-container">
<div class="row">
<div class="col-1-2">Contact me at any time.<br><a href="mailto:[email protected]">Email Me</a></div>
<div class="col-1-2 align-right">
<a href="https://www.linkedin.com/in/johnscatena/"><img width="64px" src="images/linkedin.png"></a>
<a href="https://www.facebook.com/john.scatena/"><img width="64px" src="images/facebook.png"></a>
</div>
</div>
</div>
</footer>
</body>
</html>