Skip to content

feat(lesson_01): add HTML, CSS, and images for Nicole Jackson's lesson #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 lesson_01/nicolejackson/images/picture2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
103 changes: 103 additions & 0 deletions lesson_01/nicolejackson/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nicole Jackson README</title>
<link rel="stylesheet" href="03_styles.css">
</head>
<body>
<div class="container">
<header>
<h1 class="line-break" >Nicole Jackson README</h1>
</header>

<main>




<section>
<h2 class="line-break">Introduction</h2>


<p>
I am embarking on the journey of becoming a software engineer with a unique set of experiences
and circumstances that have somehow led me back to this path after almost 30 years to finish the
thing that I started but did not complete. And I am excited!
</p>
</section>



<section>
<h2 class="line-break">Work Hours &amp; Best Way To Communicate With Me</h2>

<p>
I intend to get my work done between 9am and 5pm, although I expect to work outside of these
hours to complete homework and conduct research. For the purposes of this cohort, I will make
myself available during the week until 7:30pm if anyone needs to contact me. After 7:30, I hope
to give my undivided attention to my family and hopefully have a few minutes to myself by the end
of the day.
</p>
<p>The best ways to communicate with me are:</p>
<ul>
<li><strong>Email</strong>: as a means to share detailed information with me.</li>
<li><strong>Google Chat</strong>: great for quick updates.</li>
<li><strong>Google Meets</strong>: an excellent option for scheduling meetings when a face-to-face is not possible.</li>
<li><strong>Phone call</strong>: for a direct, real-time response.</li>
</ul>
<p>
I check my email often and will reach back out to you shortly after. I have no problem with quick
in-person chats related to work and/or projects.
</p>
</section>

<section>
<h2 class="line-break">What I'd Love To Help You With</h2>

<p>
It would be my pleasure to help you with any of the concepts we are tackling as I grasp them
myself. I am not sure which aspects of this work will come with ease for me, but I love to share
as I learn and grow. As I know from experience, helping others with ideas or concepts that I have
obtained strengthens my understanding of those very same ideas.
So as I am able to help you in whatever capacity I can, in that interaction, you are also helping me.
</p>
</section>



<section>
<h2 class="line-break">One Of My Goals For The Coming Year</h2>

<p>
My biggest goal for 2025 is to reach the end of the Code Differently 25.2 cohort with all of the
skills outlined in the course syllabus. Over the last 2 months, I have rearranged things in my
life to make room for this endeavor, and I will be extremely proud of myself to see this goal to fruition.
</p>
</section>

<section>
<h2 class="line-break">A Topic I Am Always Happy to Talk About</h2>

<p>
<strong>Reading.</strong> I love to read books. I am old school, so my preference is to have a physical
book in hand as opposed to online reading from a screen or having my books read to me in audiobooks.
I co-founded a book club during the pandemic and since its inception we have read over 30 books.
In addition to book club books, I also have a running list of titles that I tackle independently.
For a long time, I gravitated to biographies, autobiographies, and self-help books. My book club
interactions have exposed me to different genres that I now enjoy. It is amazing just how much a
good writer can convey between the front and back ends of a book.
</p>
</section>


<section>
<h2 class="line-break">Photo Gallery</h2>

<img src="images/20241229_132543 2.jpg" alt="Pink Roses" height="300" width="320" />
<img src="images/picture2.jpg" alt="Nicole" height="300" />
</section>
</main>
</div>
</body>
</html>
40 changes: 40 additions & 0 deletions lesson_01/nicolejackson/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.container {
box-sizing: border-box;
color: rgb (31, 35, 40);
font-family: apple-system, "system-ui", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
font-size: 16px;
font-weight: 400;
height:72px;
line-height:24px;
margin-block-end: 16px;
margin-block-start: 0px;
margin-bottom : 6px;
margin-inline-end:0px;
margin-inline-start:0px;
margin-top:0px;
overscroll-behavior-block: auto;
unicode-bidi: isolate;
width : 1012px;
line-height: 1.5;


}

/* Dont need Container */
/* .body {
font-family: apple-system, "system-ui", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
font-size: 16px;
background-color: white;
color: #333;
padding:20px;
word-wrap: break-word;

}*/

.line-break{
border-bottom: 1px solid #d1d9e0b3;
line-height: 1.25;
}