Skip to content

Commit a6d74f8

Browse files
marleomac3L.J. McWilliams
authored andcommitted
chore: adds html README LJ McWilliams (code-differently#47)
* Initial commit of readme and img file * added image to README * Added a title and a second image to the README * initial commit, added html and basic styling, WIP * removed anchors from headers, plan to create clickable headings later --------- Co-authored-by: L.J. McWilliams <[email protected]>
1 parent f3f9379 commit a6d74f8

File tree

4 files changed

+104
-0
lines changed

4 files changed

+104
-0
lines changed

lesson_01/ljmcwilliams/README.html

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<title></title>
7+
<meta name="description" content="">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="stylesheet" href="styles.css">
10+
<script src="https://kit.fontawesome.com/048e6f9657.js" crossorigin="anonymous"></script>
11+
</head>
12+
<body id="body-margin">
13+
<h1 id="readme-title">Getting to Know LJ McWilliams</h1>
14+
<h2 class="readme-heading">Introduction</h2>
15+
<p>
16+
I have lived in Delaware my entire life and have always had a love for tech.
17+
In middle school I developed a passion for creating digital art and that love
18+
grew throughout high school. When it came time for me to go to college, I
19+
wanted to continue my artistic passions, but I knew I needed to persue a
20+
profession with more lucrative job prospects. That's when I discovered frontend
21+
development. To my surprise, this was an almost perfect blend of art and coding.
22+
Despite being interested in the subject matter, I failed to set myself up for
23+
immediate success post-grad. In order to be productive and pay bills, I took
24+
up a job at my local Walmart. After making a few connections with coworkers
25+
and customers alike, I had heard about opportunities at Code Differently.
26+
Now I am here, excited for the next 20 weeks, and really looking forward to
27+
improving my technical and power skills.
28+
</p>
29+
<h2 class="readme-heading">Hobbies</h2>
30+
<p>Outside of work, I throroughly enjoy the following:</p>
31+
<ul>
32+
<li>Video games</li>
33+
<li>Weightlifting</li>
34+
<li>Discovering new music</li>
35+
<li>Reading manga</li>
36+
<li>Watching anime</li>
37+
<li>Making YouTube videos and streaming</li>
38+
</ul>
39+
<h2 class="readme-heading">Communication Preferences</h2>
40+
<p>
41+
The best way to reach me is to send me a message via Google Chat. It has a nice
42+
interface that allows for an easy transition between private messages, consolidated
43+
text threads and group chats. I also try to look at my email pretty frequently.
44+
If anyone were to struggle reaching me through those means. I always reply to
45+
direct messages on Instagram.
46+
</p>
47+
<h2 class="readme-heading">Preferred Learning Style</h2>
48+
<p>
49+
I describe my learning style as a mix between visual and "trial by fire". Being
50+
able to recieve visual clarification on a specific task really helps cement that
51+
information in my brain. What I mean when I say "trial by fire" is that I like to
52+
dive into topics, make mistakes at 100 mph and learn from them. It's almost like I
53+
am brute forcing my learning but it's more like I enjoy owing the fact that I won't
54+
understand a topic at the first go-around, but I won't let that deter me from moving
55+
forward.
56+
</p>
57+
<h2 class="readme-heading">Best Working Time of Day</h2>
58+
<p>
59+
I am very much a night owl. I like the idea of being able to partake in deep learning
60+
during peacful hours. I like to throw on some Bossa Nova jazz or some Native American
61+
flute music and dial into whatever I am doing. Despite this preference, I still do
62+
enjoy working during the day as it better allows for collaborations and Q `n' A's.
63+
</p>
64+
<img src="images/images.jpeg">
65+
<img src="images/learning-by-doing-aprender-haciendo.jpg" width="300">
66+
</body>
67+
</html>
7.38 KB
Loading
28.7 KB
Loading

lesson_01/ljmcwilliams/styles.css

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
* {
2+
box-sizing: border-box;
3+
}
4+
body{
5+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Arial, Helvetica, sans-serif;
6+
padding-left: 32px;
7+
padding-right: 32px;
8+
}
9+
#body-margin {
10+
max-width: 1012px;
11+
margin-right: auto;
12+
margin-left: auto;
13+
}
14+
#readme-title {
15+
font-size: 2em;
16+
padding-bottom: .3em;
17+
border-bottom: 1px solid #d1d9e0b3;
18+
}
19+
h1, h2 {
20+
font-weight: 550;
21+
margin-top: 1.5rem;
22+
margin-bottom: 1rem;
23+
}
24+
.readme-heading {
25+
padding-bottom: .3em;
26+
border-bottom: 1px solid #d1d9e0b3;
27+
}
28+
29+
img {
30+
display: block;
31+
padding-bottom: 1.5em;
32+
}
33+
34+
a {
35+
text-decoration: none;
36+
color: black;
37+
}

0 commit comments

Comments
 (0)