-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_me_styled.html
175 lines (144 loc) · 6.44 KB
/
about_me_styled.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html>
<head>
<title>About Me - Halie Eckert</title>
<!-- GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
background-color: #684455;
color: #fff;
overflow-x: hidden;
}
h1, h2, h3 {
font-family: "Zilla Slab", serif;
}
h1 {
text-align: center;
height: 2.5em;
line-height: 2.5;
font-size: 2.5em;
margin: 0;
padding: 0.5em;
background-color: #000c27;
}
h2 {
font-weight: normal;
font-size: 2em;
}
h3 {
font-weight: normal;
text-decoration: underline;
color: #eddbe0;
font-size: 1.5em
}
p {
font-family: "Roboto", sans-serif;
line-height: 1.5em;
font-size: 1.1em;
}
#intro {
display: flex;
flex-direction: row;
align-items: center;
padding: 1em;
background-color: #dcf3ff;
margin: 0;
color: #000
}
#intro img {
display: inline-block;
width: 33%;
height: auto;
}
#intro p {
display: inline-block;
width: 60%;
padding-left: 2em;
height: auto
}
#projects {
padding: 1em;
}
.project {
margin: 3em;
border-bottom: 1px solid #000
}
.project p {
font-weight: 300;
display: inline-block;
margin-bottom: 3em;
}
.project img {
display: inline-block;
margin-bottom: 3em;
}
#hobbies {
background-color: rgb(0 12 39 / 17%);
margin: 0.5em;
padding: 0.5em;
font-weight: 300;
}
.imgs img {
margin: 2em;
height: 20vw;
}
.imgs {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<h1>━   About Me   ━</h1>
<!-- INTRO -->
<div id="intro">
<img src="Assets/Images/me.jpg" height="300">
<p>Hello, my name's Halie Eckert! I'm a senior at Kent State University with a deep passion for programming.
I have experience with Python, Java, basic web development, and database systems. I'm currently employed as a
student employee, as well as a co-op student at Sherwin-Williams. After I graduate, I plan on furthering my
career at Sherwin-Williams.</p>
</div>
<!-- PROJECTS -->
<div id="projects">
<h2>Experience And Projects</h2>
<div class="project">
<h3>Sherwin-Williams Intern/Co-Op</h3>
<p>At Sherwin-Williams, I've had the oppurtunity to be involved in multiple projects, such as the ProDash Upgrade.
On this project, I played a part in updating Sherwin-Williams web dashboard for their Pro-users, such as painters and
contractors. I also manage, document, and maintain, CPRA banners on all PSG Sherwin domains.</p>
</div>
<div class="project" style="display: flex; flex-direction: row; flex-wrap: wrap;">
<h3 style="flex-basis: 50%;">Spatial-Social Networks Research</h3>
<p style="width:50%; margin-right: 5em;">Location-based social networks have grown in size and popularity in the past two decades due to their
real-world versatility. In such networks, it is important to create a spatial-social network that
not only looks into personal relationships among users but also their geographical closeness on road
networks. This research focuses on creating a system to analyze and query such networks.</p>
<img src="Assets/Images/ssn.jpg" style="height:20vw">
</div>
<div class="project" style="border: none">
<h3>KSU Ticketing System Data Transfer</h3>
<p>This project aimed at creating a data export of open service tickets, reformat the export, and import
the data to a new ticketing system. A python script was created to work with the ticketing system
API and build the import file.</p>
</div>
</div>
<!-- HOBBIES -->
<div id="hobbies">
<h2>Hobbies</h2>
<p>In my free time, I enjoy fish and reptile keeping and (unsurprisingly) programming. I currently have
13 aquariums, a gecko, and two cats in my small apartment. I also foster cats with the Portage
APL and have asisted with rehabilitating and finding over 20 cats their forever homes.</p>
<div class="imgs">
<img src="Assets/Images/cats.jpg">
<img src="Assets/Images/fish.jpg">
<img src="Assets/Images/axolotls.jpg">
<img src="Assets/Images/gecko.jpg">
</div>
</div>
</body>
</html>