forked from code-differently/code-differently-24-q4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
1 parent
54e4328
commit 50b22d2
Showing
4 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<title></title> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="styles.css"> | ||
<script src="https://kit.fontawesome.com/048e6f9657.js" crossorigin="anonymous"></script> | ||
</head> | ||
<body id="body-margin"> | ||
<h1 id="readme-title">Getting to Know LJ McWilliams</h1> | ||
<h2 class="readme-heading">Introduction</h2> | ||
<p> | ||
I have lived in Delaware my entire life and have always had a love for tech. | ||
In middle school I developed a passion for creating digital art and that love | ||
grew throughout high school. When it came time for me to go to college, I | ||
wanted to continue my artistic passions, but I knew I needed to persue a | ||
profession with more lucrative job prospects. That's when I discovered frontend | ||
development. To my surprise, this was an almost perfect blend of art and coding. | ||
Despite being interested in the subject matter, I failed to set myself up for | ||
immediate success post-grad. In order to be productive and pay bills, I took | ||
up a job at my local Walmart. After making a few connections with coworkers | ||
and customers alike, I had heard about opportunities at Code Differently. | ||
Now I am here, excited for the next 20 weeks, and really looking forward to | ||
improving my technical and power skills. | ||
</p> | ||
<h2 class="readme-heading">Hobbies</h2> | ||
<p>Outside of work, I throroughly enjoy the following:</p> | ||
<ul> | ||
<li>Video games</li> | ||
<li>Weightlifting</li> | ||
<li>Discovering new music</li> | ||
<li>Reading manga</li> | ||
<li>Watching anime</li> | ||
<li>Making YouTube videos and streaming</li> | ||
</ul> | ||
<h2 class="readme-heading">Communication Preferences</h2> | ||
<p> | ||
The best way to reach me is to send me a message via Google Chat. It has a nice | ||
interface that allows for an easy transition between private messages, consolidated | ||
text threads and group chats. I also try to look at my email pretty frequently. | ||
If anyone were to struggle reaching me through those means. I always reply to | ||
direct messages on Instagram. | ||
</p> | ||
<h2 class="readme-heading">Preferred Learning Style</h2> | ||
<p> | ||
I describe my learning style as a mix between visual and "trial by fire". Being | ||
able to recieve visual clarification on a specific task really helps cement that | ||
information in my brain. What I mean when I say "trial by fire" is that I like to | ||
dive into topics, make mistakes at 100 mph and learn from them. It's almost like I | ||
am brute forcing my learning but it's more like I enjoy owing the fact that I won't | ||
understand a topic at the first go-around, but I won't let that deter me from moving | ||
forward. | ||
</p> | ||
<h2 class="readme-heading">Best Working Time of Day</h2> | ||
<p> | ||
I am very much a night owl. I like the idea of being able to partake in deep learning | ||
during peacful hours. I like to throw on some Bossa Nova jazz or some Native American | ||
flute music and dial into whatever I am doing. Despite this preference, I still do | ||
enjoy working during the day as it better allows for collaborations and Q `n' A's. | ||
</p> | ||
<img src="images/images.jpeg"> | ||
<img src="images/learning-by-doing-aprender-haciendo.jpg" width="300"> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+28.7 KB
lesson_01/ljmcwilliams/images/learning-by-doing-aprender-haciendo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
* { | ||
box-sizing: border-box; | ||
} | ||
body{ | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, Arial, Helvetica, sans-serif; | ||
padding-left: 32px; | ||
padding-right: 32px; | ||
} | ||
#body-margin { | ||
max-width: 1012px; | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
#readme-title { | ||
font-size: 2em; | ||
padding-bottom: .3em; | ||
border-bottom: 1px solid #d1d9e0b3; | ||
} | ||
h1, h2 { | ||
font-weight: 550; | ||
margin-top: 1.5rem; | ||
margin-bottom: 1rem; | ||
} | ||
.readme-heading { | ||
padding-bottom: .3em; | ||
border-bottom: 1px solid #d1d9e0b3; | ||
} | ||
|
||
img { | ||
display: block; | ||
padding-bottom: 1.5em; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: black; | ||
} |