Skip to content
This repository was archived by the owner on Jan 14, 2024. 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
17 changes: 17 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,20 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/


/* General styles */
html {
background-color: cornflowerblue;
}

.container {
text-align: center;
padding: 90px;

}

.h1 {
border: 2px solid;
font-family: monospace;
}
40 changes: 38 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,43 @@
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->

<!-- main div for all blog -->
<div class="container">

<!-- start of header -->
<header>
<h1>Why you need learn to code?</h1>
<p>Anyone can learn to code. Whether you are a complete beginner or have some coding experience, learning to code can be a rewarding and empowering experience. But why should you learn to code? And how do you know if coding is the right career for you?
</p>
</header>

<!-- End of header -->
<!-- Main section -->
<main class="main">


<Article>
<h3>Coding can boost problem solving and logic skills.</h3>
<img src="https://media.istockphoto.com/photos/thinking-child-boy-on-black-background-with-light-bulb-and-question-picture-id1252494221?k=20&m=1252494221&s=612x612&w=0&h=ZN-kDqlkHtOZn4Fy9NKryFDFyTFpVcGHLR9NxO1Pkvw=" alt="">
<p>Outside from the implications of coding which look good on a resume, coding actually does boost skills which are actually useful to most jobs. Problem solving and logic are the main two. Learning to code is like an exercise session for the “left” side of the brain.</p>
</Article>

<Article>
<h3>You will be part of a growing community</h3>
<img src="https://media.mktg.workday.com/is/image/workday/illustration-group-people-10?fmt=png-alpha&wid=1000" alt="">
<p>When you learn to code, you will join a global community of like-minded individuals. This community is supportive and welcoming, and there are always people happy to help you out or give you advice.

In the coding community, you will find people from all walks of life, from all over the world. And as the community is constantly growing, you will always have new people to meet and learn from.</p>
</Article>

</main>

<!-- The footer -->
<footer>
<h4>we are happy to cantact us </h4>
</footer>
</div>

</body>
</html>