How to Become a Web Developer and Where to Start?

Nick Schäferhoff

Nick Schäferhoff

Editor in Chief

Certain skills are growing in demand.

Skills that can almost guarantee your jobs and opportunities for years and decades to come.

One of these skills is web development.

Have you been wondering how to become a web developer?

Contrary to a popular belief, you don’t need a fancy bachelor’s degree in computer science to become a web developer and create a functional website.

In fact, if you follow the instructions in this article, you can become a web developer a lot quicker than you think (but it will still take some hard work!).

Ready? Let’s start with the basics:

What/Who is a Web Developer

Here’s the simple answer to this question: They build and maintain websites.

In other words – they literally create how you experience the web. The websites which want users to enjoy their experience need great web developers – and they’re usually willing to fork over some serious cash to get these great web developers.

Responsibilities of a web developer:

  1. Write web pages with a combination of markup languages.
  2. Create quality mockups and prototypes.
  3. Build a WordPress site from scratch.
  4. Understand HTML and CMS.
  5. Understand UI, UX and learning usability.
  6. Develop functional and appealing websites and web-based applications.
  7. Provide website maintenance and enhancements.

These are the most common requirements, but your responsibilities and tasks will vary depending on the web development gig as well as your web development specialty.

Speaking of web development specialties, there are three that you should be aware of:

  1. Frontend development: The “frontend” refers to “stuff” on a website that you see and interact with, e.g. menus, dropdowns, etc.
  2. Backend development: The “backend” is like the portion of the iceberg below the surface. Without it, the website can’t function. The backend deals with servers, applications, databases, etc.
  3. Full-stack development: This is the combination of both backend and frontend development.

Why Should You Become a Web Developer?

Web development is an industry that won’t die out anytime soon.

In fact, the US Bureau of Labor Statistics has predicted a 13% growth in available web development jobs through 2030.

Put simply – if you can develop this skill, you won’t have a hard time finding work for the foreseeable future.

Here are FIVE big advantages/benefits of being a web developer:

  1. You can work remotely. Ever wondered what it would be like to work from anywhere in the world, on your own time? As a web developer, you’ll have plenty of opportunities to work remotely. Maybe you can finally fulfill that dream of traveling the world while saving money at the same time.
  2. You can use your skills to build your own websites and web applications. Want to make a profitable website or application? With this skill, you won’t have to pay a ton of money to get it built. You can build it yourself for a fraction of the price.
  3. You can work independently. You no longer have to work under the umbrella of a boss if you don’t want to. You can freelance or start your own business much more easily when you know about web development.
  4. Get into the profitable tech industry. Web development is basically your ticket to the tech industry. Most tech startups have some need for web developers, so this can be your way to get your foot in the door.
  5. You can build awesome stuff! The fun part is that you can be as creative as you want. Instead of looking at websites and thinking, “Wow, that looks awesome. I wish I could create something like that,” you will now be able to create your very own awesome-looking website.

What do you think? Does all of this get you excited about the idea of becoming a web developer? If so, you’re in the right place – because you’re about to learn the steps you need to take to become one!

How to Become a Web Developer


1. Learn the Basics of HTML, CSS, and Javascript

These are the nuts and bolts of all website development that you’ll work with daily if you decide to build websites for a living.

  • HTML dictates the structure
  • CSS will make it look pretty
  • Javascript will make it function

Let’s discuss each one of these and how you can learn them.

HTML

HTML stands for Hypertext Markup Language. It’s one of the main ingredients of any website and one of the so-called frontend languages.

In short – it provides the basic skeleton of a website, mainly through a series of tags.

A tag is the HTML code that controls the appearance of the HTML document’s content.

Here are some common HTML tags you should get familiar with:

  • <HTML>…</HTML> – This tag shows up at the beginning and end of an HTML document. It indicates that the document is written in HTML5.
  • <title>…</title> – The title tag is the title for the page. This is useful both for search engines (when they scan and index pages) and users (it shows up in a browser’s title bar) by explicitly stating the primary topic of each page
  • <head>…</head> – This contains information about the specific page, including title tags, metadata, and links to scripts and style sheets.
  • <body>…</body> – This includes all content that will be shown to users, including everything they’ll see and read.
Note:
All tags start like “<body>” and end like “</body>”. The “/” indicates that the specific tag is no longer in use afterward. It’s important to put the end tag in. Otherwise, the entire document will use that tag.
Hand forming check icon

Here is additional resource for learning HTML:

CSS

CSS stands for Cascading Style Sheets.

It puts the style behind the HTML structure. Basically, without CSS, HTML, and consequently, the whole web page would look boring.

Here’s how they combine: Within your HTML code, you reference a CSS style sheet.

Here’s an example of what CSS looks like in action:

}

#top-header a,
#top-header a {
        color: #fff;
}

#top-header,
#et-secondary-nav {
        -webkit-transition: background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;
        -moz-transitions: background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;
        -transistion: background-color 0.4s, transform 0.4s, opacity 0.4s ease-in-out;
}

#top-header .container {
        padding-top: 0.75em;
        font weight: 600;
}

Here’s a great resource for learning CSS: CSS Cheat Sheet

Javascript

Javascript is a programming language that allows you to implement elements on web pages. It powers features like interactive maps, 2D/3D graphics, and more.

Here’s a great resource to help you learn Javascript: Javascript Cheat Sheet

2. Learn the Basics of WordPress

To become a web developer, you’ll have to get familiar with WordPress. After all – 65% of all websites are powered by this free, open-source software that you can install on basically any web host.

WordPress.orgOnce you set up a WordPress site, it’s fairly easy for your clients to add content by themselves (even if they don’t have any web development experience).

Further Reading:

3. Get to Know UI and UX

UI (User Interface) and UX (User Experience) are the basics of user experience design.

Most developers aren’t web designers – these are two different realms.

It’s still important to note that by learning the fundamentals of user experience design, you can better understand how a website is supposed to work. That will keep more users on the site, help them find what they’re looking for, and ultimately spend more money on that site.

To learn the building blocks of design skills, we recommend learning the Adobe Creative Suite. Photoshop should be the first thing you dive into, as it’s the go-to for most serious designers. If you don’t like Adobe, you can also dive into Sketch, which is a rising star among designers.

Sketch.comHere are some resources for understanding and learning UI and UX:

4. Learn SQL and PHP (Optional)

We’ll lump these two together because they’re like two sides of the same coin.

SQL is a database technology (see SQL cheat sheet) that stores information. PHP is a ‘scripting’ language that places or pulls stuff from a database (see PHP cheat sheet).

Think about WordPress, for example.

It uses MySQL to store and manage information (blog posts, page content, comments, user information, etc.) in a database ‘table’. PHP is what makes a WordPress website dynamic, interacting with all of these different elements and properly updating the database as you go.

Learning more about how SQL and PHP work together can help you master WordPress site development, which literally hundreds (if not thousands) of people are looking for every day on job and project boards across the internet.

Additional resources for learning PHP and SQL:

It’s not easy. You won’t master all of these over a week or two. But over time, becoming familiar and then good at these skill sets means that you will always have a profitable career ahead of you.

5. Learn the Basics of SEO

SEO stands for Search Engine Optimisation. This refers to the process of improving a website’s rankings within a search engine like Google. It’s one of the most important skills in online business.

You may be thinking, “If I’m a developer, why do I need to worry about how well a site ranks in the search engines? Isn’t that the job of the bloggers and content creators?”

Well yes, a large part of a website’s SEO has to do with the content. But the actual structure and code of the website play a role as well.

For example, heading tags (HTML) are extremely important for SEO. They tell search engines what’s really important on a website.

Now, do you need to be an SEO expert? Absolutely not. But you should learn the basics of SEO, and keep SEO in mind while you’re creating each website. In doing so, you’ll give the website a much greater chance of success, and make your web development client that much happier.

Here are a few SEO tips for web developers:

  • Get your meta tags optimized. On the search page, the meta tag tells browsers what your site is about – the better it is, the more likely they are to click through to the site.
  • Make sure your heading tags are in a specific order. H1 should be the main heading, and then you should descend through lower-level headings through the page (i.e., H2, H3, H4, and so on). This makes it easier for search engines to navigate the site.
  • Make sure your title tag properly describes the web page. The title should emphasize what the page is about.

Here are some resources for learning the basics of SEO:

Dedicate at least 3-5 hours to reading through resources and learning the basics. This will prepare you to develop websites with SEO in mind.

6. Make Sure Your Site is Responsive

When you’re creating your own website (which will be a good idea if you want to get more clients) – you should make sure your site is responsive.

Responsive means that the elements of the website adjust according to the screen size. This means that your website will look good whether the visitor is on a laptop or mobile device.

In 2018, responsive design was crucial. All of your clients will expect it – lead by example and make sure that your website is responsive.

Okay, so once you go through these 6 steps, you’ll have a basic understanding of web development. You’ll know how to do it (at least at a basic level).

Take your time with these steps – the demand for web developers isn’t going down anytime soon, so you have time to learn.

But here’s the big question: Once you feel like you have that basic understanding down, how do you actually find web development clients?

You’re in luck – that’s what we’ll talk about next!

How to Find Your First Web Development Client (or Become a FREELANCER)


Just because you have the skill doesn’t mean people will just fork over money to you. You need to do a little bit of work and sell yourself. You also need to put yourself in the right places to get opportunities.

Now, as a web developer, you have two choices. You can 1) try to land a full-time, on-site job with a company or 2) go the route of freelancing, and look for online gigs.

We recommend freelancing. While it doesn’t afford the same guaranteed paycheck that a full-time job does, there are 3 huge benefits:

  • Freedom: No more clocking in and clocking out. You might still work the same hours (or more), but your schedule, location, and living circumstances are completely up to you. (Plus – no commuting, which saves you hours every week!)
  • Money: Once you become a good freelancer, you’ll have a better shot at making more money (than waiting for a measly 3% raise each year).
  • Prestige: Over time, you’ll have the opportunity to build your own personal work and brand to the point that eventually guarantees you a steady influx of new clients (without even having to look for them!).

In the following section, we’ll focus on how to get your first freelancing gig as a web developer.

1. Get on Job Boards

Most freelancers hit job boards to find their first web development gigs. Those can be great for accumulating experience, but you probably don’t want to use them as a long-term strategy.

The quality of clients can be very hit-or-miss. Some might be great. Others less so…

Many times they attract people who are inexperienced with hiring, which can create a lot of problems when you’re trying to work with them. Quite often, job boards will also attract people with unrealistic time frames and budgets.

Over-relying on job boards (for too long) won’t give you the opportunity (or free time) to start building your own brand. Attracting ‘inbound’ attention to your work will ultimately land you the best (and highest paying) clients at the end of the day.

But like we said, it’s not a bad option to get started and gain experience.

Just understand that every gig you get on a job board (while it may not pay extremely well) will help you to gain experience and get more future work.

It’s also quite easy to get started on job boards…

Below is a picture of the results from a quick search on UpWork:

(As you can see, there are tons of job opportunities for web developers!)

Upwork Web Development Jobs

Here are some job boards where you can find web development gigs:

2. Put Together a Portfolio Site

For making it easy to get more clients (and for clients to find you), you should create a portfolio site. This is where you’ll show off your latest projects, show testimonials from happy clients, provide potential clients with an easy way of contacting you, and also show off your web development capabilities.

Here are some tips for creating your web development portfolio site:

  • Use testimonials from past and current clients. This will assure visitors that you do great work and that others were happy to work with you. (Make it a habit of asking testimonials whenever you finish a project.)
  • Infuse your personality. What’s great about working with you, and what makes you stand out? When you infuse personality into your portfolio site, you’ll automatically set yourself apart.
  • Include the right elements. Your name, the short version of your story of how/why you became a web developer, your contact details, your recent work, and your skills.
  • Answer the “What’s in it for me?” question. Basically, let them know the main benefit of working with you, i.e., what clients will get from working with you.

Most of all – you should make sure your portfolio site looks awesome! You want potential clients to see it and think, “Wow! I want something like that for my website too!” That way, they’ll be a lot more interested in working with you.

Here are a few examples of great web developer portfolio sites to use as inspiration:

  • MattFarley.ca
  • Caferati.me (Speaking of infusing personality, this developer does it in a big way on his site. Go to the homepage and you’ll see what we mean!)
  • Pierre.io

pierre nel portfolio siteHere are some resources to help you build your web development portfolio site:

3. Start Networking

Don’t just spend all your time scouring online job boards. If you want to get great opportunities, you have to get out into the real world too.

Make it a point to attend at least 2-3 relevant networking events each month. Assuming you live in or within an hour or two of a big city, it shouldn’t be difficult to find these kinds of events.

Start by searching for meetups on Meetup.com and Eventbrite. On these two platforms alone you should find tons of relevant events.

meetup.comAim for events that draw entrepreneurs, as these people will be the most likely to want to build a new website. As you connect and network with more of these people (and let it be known that you’re a web developer), you’ll expose yourself to more and better gigs than those you’d find on job boards. You’ll also start to grow your personal brand.

Here’s another great resource to help you find events: How to Find Networking Events Actually Worth Attending

The Benefits of a Full-Time Web Developer

We talked a lot about freelancing as a web developer. However, working full-time in a company does have it’s own benefits:

  • You’re working with other developers – this gives you the advantage of a shared experience, especially if you’re entirely new. Working with others allows them to share their experience with you, which is quite valuable.
  • Client support is organized – when you’re working in a company, you’re not bound to work at varying times of the day. This means that company clients know when to contact and expect your work to be finished.
  • Much more focused workload – several freelancers today work on different projects at the same time. This divides their focus which can affect the overall quality. As a full-time developer, you’re more likely to work on a single project that requires your full attention.

Conclusion

The job market is getting tougher. The more traditional jobs are phased out every day. So, why not learn a skill that will keep you employed (and possibly wealthy) for the foreseeable future?

That’s the big advantage of web development. The great part is- you don’t need a fancy expensive degree to get into the field. Simply by following the steps we’ve listed out here, you can start out the path of becoming a web developer.

Also, there are a lot of Integrated Development Environment (IDE) software options out that make a developer’s life much easier.

To recap, here are the basic steps to becoming a web developer:

  1. Learn the Basics of HTML, CSS, and Javascript
  2. Go through WordPress Tutorials
  3. Learn the Basics of UI and UX
  4. Learn SQL and PHP
  5. Learn the Basics of SEO
  6. Make Sure Your Site is Responsive

And here are the basic steps to find your first web development gig:

  1. Get on Job Boards
  2. Put Together a Portfolio Site
  3. Start Networking

Now it’s time to take action and show the world what an awesome web developer you can be!