Skip to content

Commit e9363cc

Browse files
authored
Merge branch 'code-differently:main' into feature/lesson_02
2 parents a80d803 + 2ef5fa7 commit e9363cc

File tree

6 files changed

+108
-0
lines changed

6 files changed

+108
-0
lines changed
3.06 MB
Loading
956 KB
Loading
958 KB
Loading
2.05 MB
Loading

lesson_01/zionbuchanan/index.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="stylesheet" href="style.css">
7+
<title>Document</title>
8+
</head>
9+
<body>
10+
<h1>Zion Buchanan README</h1>
11+
<div class="line"></div>
12+
13+
<h2>Introduction</h2>
14+
<div class="line"></div>
15+
<p>Zion Buchanan is a first-generation college graduate with a degree in Organizational Leadership from the University of Delaware. Throughout his academic and professional journey, he has gained diverse leadership experiences. Passionate about exploring new cultures, Zion has traveled extensively, including a transformative trip to Ghana in summer 2022 as part of a leadership development cohort for young Black men. He recently joined a Software Engineering program, where he is committed to developing new skills that can benefit him in his professional endeavors</p>
16+
17+
<h2>Prerequisites</h2>
18+
<div class="line"></div>
19+
<span>Here are some things I need that would help me be a productive engineer:</span>
20+
<ul>
21+
<li>I work best with open-minded people who I can bounce off ideas and strategize with.</li>
22+
<li>I value a healthy work/life balance</li>
23+
<li>A consistent routine helps me stay organized in completing tasks.</li>
24+
<li>Small breaks throughout the day helps prevent me from burning out.</li>
25+
<li>I like to socialize and do activities that foster a positive work culture/community.</li>
26+
</ul>
27+
<h2>Contact</h2>
28+
<div class="line"></div>
29+
<ul>
30+
<li>The best time to reach me is between 9am to 5pm.</li>
31+
</ul>
32+
<h2>Support</h2>
33+
<div class="line"></div>
34+
<ul>
35+
<li>I'm a hands-on learner. I accept and appreciate constructive feedback that will help me grow. I am constantly finding new ways on how I can improve. Whenever I have difficulty getting started with tasks, I try my best to ask for guidance and tips on how to do so. Sometimes that can be hard for me becuase I don't want to slow others down.</li>
36+
</ul>
37+
<h2>Goals</h2>
38+
<div class="line"></div>
39+
<ul>
40+
<li>I aim to gain skills in software development so that I can land a career in the tech industry.</li>
41+
<li>I want to craft and master my skillset so that I can be a valuable source in helping others.</li>
42+
<li>I aim to generate wealth so that I can provide for my family and afford the lifestyle that I desire to live.</li>
43+
<li>I want to make progress in my fitness, staying in shape and maintaining great health.</li>
44+
</ul>
45+
<h2>Fun Facts About Me</h2>
46+
<div class="line"></div> <ul>
47+
<li>I find enjoyment in cooking, sports, singing or playing music, and being around my family/friends.</li>
48+
<li>The photos in my gallery were all taken when I had studied abroad for a month in Trinidad and Tobago over the winter.</li>
49+
<li>I like visiting new places and trying delicous foods.</li>
50+
</ul>
51+
<h2>Photo Gallery</h2>
52+
<div class="line"></div>
53+
<ul class="gallery">
54+
<img class="images" src="images/unnamed-3.jpg">
55+
<div class="line"></div>
56+
<img class="images" src="images/unnamed-5.jpg">
57+
<div class="line"></div>
58+
<img class="images" src="images/unnamed-6.jpg">
59+
<div class="line"></div>
60+
</ul>
61+
62+
63+
64+
</body>
65+
</html>

lesson_01/zionbuchanan/style.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
3+
body {
4+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
5+
margin-left: 25%;
6+
margin-right: 25%;
7+
line-height: 1.5;
8+
padding: 32px;
9+
overflow: auto;
10+
11+
}
12+
.line{
13+
border-bottom: 1px solid lightgrey;
14+
}
15+
h1{
16+
margin-bottom: 5px;
17+
}
18+
h1 {
19+
font-weight: normal;
20+
}
21+
h2 {
22+
23+
}
24+
25+
26+
.images {
27+
max-width: 100%;
28+
max-height: auto;
29+
padding-bottom: 25px;
30+
}
31+
.gallery {
32+
display: flex;
33+
flex-direction: column;
34+
justify-content: center;
35+
padding-inline-start: 0px;
36+
;
37+
}
38+
h1, h2 {
39+
font-weight: 600;
40+
}
41+
42+
43+

0 commit comments

Comments
 (0)