forked from CodeYourFuture/HTML-CSS-Coursework-Week1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (48 loc) · 2.4 KB
/
index.html
File metadata and controls
58 lines (48 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<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"
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>
<!-- 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>