Skip to content

Commit 70acc3d

Browse files
feat: adds Nicole's HTML README (#94)
Co-authored-by: NcoleJac <[email protected]>
1 parent 0fca79b commit 70acc3d

File tree

4 files changed

+143
-0
lines changed

4 files changed

+143
-0
lines changed
5.13 MB
Loading
413 KB
Loading

lesson_01/nicolejackson/index.html

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Nicole Jackson README</title>
6+
<link rel="stylesheet" href="03_styles.css">
7+
</head>
8+
<body>
9+
<div class="container">
10+
<header>
11+
<h1 class="line-break" >Nicole Jackson README</h1>
12+
</header>
13+
14+
<main>
15+
16+
17+
18+
19+
<section>
20+
<h2 class="line-break">Introduction</h2>
21+
22+
23+
<p>
24+
I am embarking on the journey of becoming a software engineer with a unique set of experiences
25+
and circumstances that have somehow led me back to this path after almost 30 years to finish the
26+
thing that I started but did not complete. And I am excited!
27+
</p>
28+
</section>
29+
30+
31+
32+
<section>
33+
<h2 class="line-break">Work Hours &amp; Best Way To Communicate With Me</h2>
34+
35+
<p>
36+
I intend to get my work done between 9am and 5pm, although I expect to work outside of these
37+
hours to complete homework and conduct research. For the purposes of this cohort, I will make
38+
myself available during the week until 7:30pm if anyone needs to contact me. After 7:30, I hope
39+
to give my undivided attention to my family and hopefully have a few minutes to myself by the end
40+
of the day.
41+
</p>
42+
<p>The best ways to communicate with me are:</p>
43+
<ul>
44+
<li><strong>Email</strong>: as a means to share detailed information with me.</li>
45+
<li><strong>Google Chat</strong>: great for quick updates.</li>
46+
<li><strong>Google Meets</strong>: an excellent option for scheduling meetings when a face-to-face is not possible.</li>
47+
<li><strong>Phone call</strong>: for a direct, real-time response.</li>
48+
</ul>
49+
<p>
50+
I check my email often and will reach back out to you shortly after. I have no problem with quick
51+
in-person chats related to work and/or projects.
52+
</p>
53+
</section>
54+
55+
<section>
56+
<h2 class="line-break">What I'd Love To Help You With</h2>
57+
58+
<p>
59+
It would be my pleasure to help you with any of the concepts we are tackling as I grasp them
60+
myself. I am not sure which aspects of this work will come with ease for me, but I love to share
61+
as I learn and grow. As I know from experience, helping others with ideas or concepts that I have
62+
obtained strengthens my understanding of those very same ideas.
63+
So as I am able to help you in whatever capacity I can, in that interaction, you are also helping me.
64+
</p>
65+
</section>
66+
67+
68+
69+
<section>
70+
<h2 class="line-break">One Of My Goals For The Coming Year</h2>
71+
72+
<p>
73+
My biggest goal for 2025 is to reach the end of the Code Differently 25.2 cohort with all of the
74+
skills outlined in the course syllabus. Over the last 2 months, I have rearranged things in my
75+
life to make room for this endeavor, and I will be extremely proud of myself to see this goal to fruition.
76+
</p>
77+
</section>
78+
79+
<section>
80+
<h2 class="line-break">A Topic I Am Always Happy to Talk About</h2>
81+
82+
<p>
83+
<strong>Reading.</strong> I love to read books. I am old school, so my preference is to have a physical
84+
book in hand as opposed to online reading from a screen or having my books read to me in audiobooks.
85+
I co-founded a book club during the pandemic and since its inception we have read over 30 books.
86+
In addition to book club books, I also have a running list of titles that I tackle independently.
87+
For a long time, I gravitated to biographies, autobiographies, and self-help books. My book club
88+
interactions have exposed me to different genres that I now enjoy. It is amazing just how much a
89+
good writer can convey between the front and back ends of a book.
90+
</p>
91+
</section>
92+
93+
94+
<section>
95+
<h2 class="line-break">Photo Gallery</h2>
96+
97+
<img src="images/20241229_132543 2.jpg" alt="Pink Roses" height="300" width="320" />
98+
<img src="images/picture2.jpg" alt="Nicole" height="300" />
99+
</section>
100+
</main>
101+
</div>
102+
</body>
103+
</html>

lesson_01/nicolejackson/style.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
.container {
2+
box-sizing: border-box;
3+
color: rgb (31, 35, 40);
4+
font-family: apple-system, "system-ui", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
5+
font-size: 16px;
6+
font-weight: 400;
7+
height:72px;
8+
line-height:24px;
9+
margin-block-end: 16px;
10+
margin-block-start: 0px;
11+
margin-bottom : 6px;
12+
margin-inline-end:0px;
13+
margin-inline-start:0px;
14+
margin-top:0px;
15+
overscroll-behavior-block: auto;
16+
unicode-bidi: isolate;
17+
width : 1012px;
18+
line-height: 1.5;
19+
20+
21+
}
22+
23+
/* Dont need Container */
24+
/* .body {
25+
font-family: apple-system, "system-ui", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
26+
font-size: 16px;
27+
background-color: white;
28+
color: #333;
29+
padding:20px;
30+
word-wrap: break-word;
31+
32+
}*/
33+
34+
.line-break{
35+
border-bottom: 1px solid #d1d9e0b3;
36+
line-height: 1.25;
37+
}
38+
39+
40+

0 commit comments

Comments
 (0)