diff --git a/lesson_01/chelseaogbonnia/index.html b/lesson_01/chelseaogbonnia/index.html new file mode 100644 index 000000000..f711dd9f6 --- /dev/null +++ b/lesson_01/chelseaogbonnia/index.html @@ -0,0 +1,47 @@ + + + + + + + Read Me HTML + + +
+

Personal README

+
+

Introduction

+
+
+

Hi there! I’m currently on my journey to becoming a full-stack software engineer. I enjoy solving problems and learning new technologies as I go. This README gives you a little insight into how I work best, what motivates me, and how I approach learning and collaboration.

+
+
+
+
+

How I Learn Best

+
+
    +
  • Independent Learning: I prefer figuring things out on my own, and I enjoy working through challenges independently before reaching out for help. This allows me to build resilience and a deeper understanding of the material.
  • +
  • Visual Learning: I grasp concepts more quickly when I can visualize them. Charts, diagrams, and presentations help me organize information in a way that sticks. I find that seeing a process step-by-step or looking at a flowchart helps solidify abstract concepts.
  • +
  • Planning Ahead: I like having access to the curriculum early so I can break down topics and structure my learning schedule. When I can map out what’s ahead, I feel more in control and can manage my time better.
  • +
  • Mastering Subjects: I work on a subject until I feel confident enough to explain it to someone else. Teaching is one of the ways I confirm my own understanding. If I can make something simple enough for others to understand, I know I’ve truly mastered it.
  • +
  • Note-Taking: I’m not the type to take long-winded notes. Instead, my notes are an organized summary of my thoughts. They serve as a reference point for later, but I tend to work through most concepts in my head first before writing anything down.
  • +
+
+
+
+

What I Value in Collaboration

+ +
+
+

Fun Fact

+

I often like to challenge myself with side projects. Whether it's exploring a new API or building a small application for fun, these projects give me a chance to experiment with new technologies and sharpen my skills.

+

Python API Example

+
+
+ + \ No newline at end of file diff --git a/lesson_01/chelseaogbonnia/style.css b/lesson_01/chelseaogbonnia/style.css new file mode 100644 index 000000000..be8166a6e --- /dev/null +++ b/lesson_01/chelseaogbonnia/style.css @@ -0,0 +1,120 @@ +body { + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; + font-size: 16px; + line-height: 1.5; + color: #24292e; + background-color: #fff; + padding: 20px; + font-size: 100%; + } + + h1, h2, h3, h4, h5, h6 { + font-weight: 600; + margin: 1em 0; + border-bottom: 1px solid #eaecef; + } + + h1 { + font-size: 2em; + padding-bottom: 0.3em; + } + + p { + margin-bottom: 16px; + } + + strong { + font-weight: 600; + } + + em { + font-style: italic; + } + + code { + font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; + background-color: #f6f8fa; + padding: 0.2em 0.4em; + border-radius: 6px; + } + + pre { + background-color: #f6f8fa; + padding: 16px; + border-radius: 6px; + overflow: auto; + font-size: 85%; + line-height: 1.45; + } + + ul, ol { + padding-left: 2em; + margin-bottom: 16px; + } + + li { + margin-bottom: 0.25em; + } + + blockquote { + border-left: 4px solid #dfe2e5; + padding: 0 1em; + color: #6a737d; + margin: 0; + } + + a { + color: #0366d6; + text-decoration: none; + } + + a:hover { + text-decoration: underline; + } + + table { + width: 100%; + border-collapse: collapse; + margin-bottom: 16px; + } + + th, td { + border: 1px solid #dfe2e5; + padding: 6px 13px; + } + + th { + background-color: #f6f8fa; + font-weight: 600; + } + + hr { + border: 0; + border-top: 1px solid #eaecef; + margin: 24px 0; + } + + img { + max-width: 100%; + height: auto; + } + + input[type="checkbox"] { + margin-right: 0.5em; + } + + @media(max-width:480px){ + body { + padding: 10px; + } + h1 { + font-size: 1.5em; + } + p{ + font-size: 0.9em; + } + pre{ + white-space: pre-wrap; + word-wrap: break-word; + } + }