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
108 lines (103 loc) · 6.07 KB
/
index.html
File metadata and controls
108 lines (103 loc) · 6.07 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!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>Junior Pathway Sofware Developer</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="/img/logo.png" />
<script src="https://kit.fontawesome.com/c0b874b18b.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<h1>PATHWAY SOFTWARE DEVELOPER</h1>
<img src="/img/logo.png" src="images/bikes-for-refugees_logo.jpg" alt="logo sotware" class="header__logo" />
</header>
<section>
<article class="text">
<h2>The First Steps</h2>
<p>
Are you interested in a career as a web developer but are not sure how to start preparing for it? We have you
covered!
Web developers perform important functions, like creating websites, maintaining the back-end of applications and
running tests, to ensure sites' continued functionality. A role as a junior developer can be a great way to
learn
the basics of the industry and begin a career in website development. If you're interested in becoming a junior
developer, it's helpful to learn more about the position and the steps needed to begin your career.
</p>
<p>
There are many technical skills that can help you succeed as a junior developer. One benefit of the role is your
ability to work beneath more senior developers to grow your skills and experience. Here are some technical
skills
that can help you in your role as a junior developer:
</p>
<h2>Knowledge of basic programming languages</h2>
<p>
While the company you work for might employ specific languages, proficiency in common coding and website
development languages can help you qualify for a position as a junior developer. Often, companies look for
candidates with experience using JavaScript, HTML and CSS languages. These are three of the most-used web
development languages. You might also choose to explore other common languages like Python, C++ or SQL
depending on your career goals and the functions of the sites you're working on developing.<br /><br />
</p>
<span>Here you can find one of the most popular web to learn free courses => <a
href="https://www.freecodecamp.org/"><strong>freecodecamp</strong></a></span>
</article>
<article class="text">
<h2>Study Methods</h2>
<p>
Your journey to becoming a web developer can begin before college. There are many online resources available to
those
interested in coding. Not only does learning a language or designing a program in your free time enhance your
skills,
but it also shows prospective employers you're a passionate and self-motivated developer with a genuine interest
in
the field. Some high schools offer computer programming courses or electives. Consider taking these courses to
learn
more about development and gain valuable skills.<br>
If your high school doesn't offer programming courses, engaging in math and science offerings can help you
prepare
for a college setting and improve your chances of getting into a top-tier technology school. Many computer
science
degree programs require advanced mathematics courses like calculus, so working on your math skills as early as
possible can be a major benefit.<br /><br />
</p>
<span>More tips in this page => <a
href="https://www.intellectsoft.net/blog/top-12-software-development-methodologies-you-should-know/"><strong>Intellect
Soft</strong></a></span>
</article>
<article class="text">
<h2>Networking</h2>
<p>
Having a network is also good for your overall health and well-being; something that we, as developers, ignore
far
too often. It can be used for getting help when dealing with stressful work or life situations. Helping other
people with their issues and problems is also a great way to reinforce your learning, and build a stronger
relationship with that person. Strong relationships are key to having good mental health.<br /></p>
<p><b>Local meetups:</b> A great wy to meet local developers and events are often sponsored by local companies.
Many are often free to attend and hppen regularly (often monthly). If you ask around then people always seem
to know one or two you haven't heard of. Meetups typically have someone giving a talk about a technology or
process they are passionate about and are great for generating new ideas. Meetups also usually have an “after
party”
where people will go and have a few drinks and a chat. This is where you will meet new connections, a good
tactic is
to find the speaker to ask some directed questions about their talk. Let the conversation flow from
there.<br /><br />
</p>
<span>More tips in this page => <a
href="https://www.intellectsoft.net/blog/top-12-software-development-methodologies-you-should-know/"><strong>Intellect
Soft</strong></a></span>
</article>
<footer class="data">
<p class="media-text">© Karla Grajales<i class="fa-regular fa-face-laugh-wink"></i></p>
<div class="social">
<a class="facebook" href="https://www.facebook.com/groups/front.designer"><i class="fa-brands fa-facebook"></i></a>
<a class="twitter" href="https://twitter.com/explore"><i class="fa-brands fa-twitter"></i></a>
<a class="youtube" href="https://www.youtube.com/watch?v=puLSsuG1YE4"><i class="fa-brands fa-youtube"></i></a>
<a class="instagram" href="https://www.instagram.com/victorroblesweb/"><i class="fa-brands fa-instagram"></i></a>
<a class="github" href="https://github.com/karlagLuna"><i class="fa-brands fa-github"></i></a>
</div>
</footer>
</section>
</body>
</html>