Skip to content

Commit 8ec112f

Browse files
committed
Activity_3.6.0 - rough draft
1 parent bfcf7df commit 8ec112f

File tree

3 files changed

+150
-0
lines changed

3 files changed

+150
-0
lines changed
Loading

Activity_3.6.0/index.html

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<META CHARSET="UTF-8">
5+
<title>About me</title>
6+
<link rel="stylesheet" href="style.css">
7+
</head>
8+
<body>
9+
<header>
10+
<h1>Eric Jacobowitz</h1><br>
11+
<h2>“Success is not final; failure is not fatal: It is the courage to continue that counts.” —Winston Churchill</h2><br>
12+
<br>
13+
</header>
14+
<p>Even though I work in IT, 2 of my hobbies are home automation and my home lab. I use google home and Home assistant as my home automation hubs
15+
where I can interact with most of my home. I can turn on/off most of my lights, set my thermostat and configure automations. I also like
16+
to host my own services if I can. I have built a 3 node proxmox cluster which runs a couple of VM's that run docker and some containers. One docker
17+
container is a port of VSCode that runs on a website. This VSCode container is what I am using as an IDE for this class. Both home automation
18+
and my home lab can be very time consuming as they evolve very quickly. They both need constant updates and I seem to be always adding new things
19+
as time goes on. I like the challenges as well as the reward when things work they way I want and I get to use them.
20+
</p>
21+
<section>
22+
<h2>Education</h2>
23+
<section>
24+
<h3>College</h3>
25+
<p>New York City Technical College, Brooklyn, New York</p>
26+
</section>
27+
<section>
28+
<h3>Online course</h3>
29+
<p>Plural site - Azure Fundamentals</p>
30+
</section>
31+
<section>
32+
<h3>Certification</h3>
33+
<p>Microsoft Certified: Azure Fundamentals</p>
34+
</section>
35+
</section>
36+
<section>
37+
<h2>Work Experience</h2>
38+
<section>
39+
<h3> Senior Engineer Applications Server - Jetblue Airways</h3>
40+
<p>In Jetblue I work with an amazing team on operational systems critical to Jetblue.</p>
41+
</section>
42+
<section>
43+
<h3> Desktop support - Thompson Financial</h3>
44+
<p>At Thompson I was part of a team work tickets on any desktop related issues. From installing software and fixing blue screens of death.</p>
45+
</section>
46+
</section>
47+
<section>
48+
<h3>favorites</h3>
49+
<section>
50+
<h3>My favorite foods in order are:</h3>
51+
<ol>
52+
<li>Italian</li>
53+
<ol>
54+
<li>Penne with meat sauce</li>
55+
</ol>
56+
<li>Vietnamese</li>
57+
<ol>
58+
<li>Pho</li>
59+
<li>Bun bo Hue</li>
60+
<li>Banh Mi</li>
61+
</ol>
62+
<li>French</li>
63+
<ol>
64+
<li>Escargot</li>
65+
</ol>
66+
<li>American</li>
67+
<ol>
68+
<li>Cheese burger</li>
69+
</ol>
70+
<li>Indian</li>
71+
<ol>
72+
<li>chicken tikka masala</li>
73+
</ol>
74+
<li>Chinese</li>
75+
<ol>
76+
<li>sesame chicken</li>
77+
</ol>
78+
</ol>
79+
</section>
80+
<section>
81+
<h3>My favorite websites are:</h3>
82+
<ul>
83+
<li><a href="https://www.google.com">Google</a></li>
84+
<li><a href="https://www.youtube.com">Youtube</a></li>
85+
<li><a href="https://www.amazon.com">Amazon</a></li>
86+
</ul>
87+
</section>
88+
</section>
89+
<footer>
90+
copywrite* May 2nd 2024
91+
</footer>
92+
</body>
93+
</html>

Activity_3.6.0/style.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
body {
2+
3+
background-color: #D6DBB2;
4+
font-family: sans-serif
5+
color: #422040;
6+
margin-right: 35em;
7+
8+
}
9+
10+
h1 {
11+
12+
font-weight: bold;
13+
font-size: 4em;
14+
font-style: bold;
15+
font-weight: 800;
16+
border: #E3D985;
17+
border-style: solid;
18+
background-color: #E3D985;
19+
20+
}
21+
22+
h2 {
23+
24+
background-image: url("blue-watercolor-background_615876-5.jpg");
25+
padding: 4em;
26+
font-family: serif;
27+
font-style: italic;
28+
}
29+
30+
ol, ul {
31+
border: #422040;
32+
border-color: #422040;
33+
border-style: solid;
34+
background-color: #422040;
35+
color: #D6DBB2;
36+
font-size: medium;
37+
padding: 1.0em;
38+
}
39+
40+
li {
41+
font-weight: lighter;
42+
border-color: #422040;
43+
border-style: solid;
44+
}
45+
46+
p {
47+
font-style: normal;
48+
font-weight: 700;
49+
50+
}
51+
52+
/*this formats links*/
53+
54+
a {
55+
color: #BCD8C1;
56+
background-color: #E57A44;
57+
}

0 commit comments

Comments
 (0)