Skip to content
This repository was archived by the owner on Oct 26, 2020. It is now read-only.
Open
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
10 changes: 10 additions & 0 deletions week1/3-website/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,13 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/

#header {
color: white;
background-color: brown;

}

#h1 {
color: blue;
}
63 changes: 58 additions & 5 deletions week1/3-website/index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,75 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta charset="UTF-8"/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
href="style.css"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
/>
</head>
<body>

<div id="container">
<div id="header"></div>
<h1> My Coding Journey Blog </h1>
My story, my life, my journey is like a curve mixed with some highs and lows.
<div id="content">

<div id="nav"> </div>
<h2> Navigation</h2>
<div id="homepage">
<h2>Introduction: Pre-Bootcamp</h2>
<p>I have always desired to move into the tech world fully but it hasn't fully materialised.
My quest for develoing things lead me to attend a few paid trainings but the focus always
shifted for a couple of reasons including lack of direction and no support. No mentor, no
proper structure of learning, no road path for personal development. My passion meant I
followed a few trainers on YouTube and I end up jumping from one language to another trying
to a Jack-of-all trade.</p>
</div>

<div id="coursestart">
<h2>CYF Bootcamp</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad facere vitae numquam non
magni eos id a iure, incidunt officia maxime earum, esse totam eius quaerat! Eum architecto
quia earum.</p>

<p></p>
</div>
<div id="drop-in">
<h2>CYF Drop-in Sessions</h2>
<p>Starting off with a taste of coding for the first time was quite daunting. With a hands-on
training approach using best platforms particularly FreeCodeCamp began my leap into my life long
goal. My first web site "Product Landing Page" was interesting as I could see the outcome of my
hardwork on the CodePen editor displayed on the web browser. This first project was closely followed by another web page "A Tribute Page"
</p>
</div>

<div id="fundamentals">
<h2>CYF Fundamentals</h2>
<h2>Introduction to Programming</h2>
</div>

<div id="drop-in">
<h2>Full Stack Web Development</h2>
</div>


<div id="footer">
<footer>
<p class="copyright">© <em>Osagiestar 2020</em><br>CYF</p>
</footer>
</div>

</div>

<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!--My name is Osagie. I am a software dev intern with CYF-->
</body>
</html>