⇦ Back

WDX-180

Web Development X

Publishing your website

(Updated: 14/08/2023)

Once you finish writing the code and organizing the files that make up your website, you need to put it all online so people can find it. This article explains how to get your simple sample code online with little effort.

What are the options?

Publishing a website is a complex topic because there are many ways to go about it. This article doesn’t attempt to document all the possible methods. Instead, it explains the advantages and disadvantages of three approaches that are practical for beginners. Then it steps through one method that can work right away for many readers.

Getting hosting and a domain name

To have more control over content and website appearance, most people choose to buy web hosting and a domain name:

Many professional websites go online this way.

In addition, you will need a File Transfer Protocol (FTP) program (see How much does it cost: software for more details) to actually transfer the website files over to the server. FTP programs vary widely, but generally, you have to connect to your web server using details provided by your hosting company (typically username, password, hostname). Then the program shows you your local files and the web server’s files in two windows, and provides a way for you to transfer files back and forth.

An FTP client showing all files and folders of a website and uploading them to a server

Tips for finding hosting and domains

Using an online tool like GitHub or Google App Engine

Some tools let you publish your website online:

These options are usually free, but you may outgrow the limited feature-set.

Using a web-based IDE such as CodePen

There are a number of web apps that emulate a website development environment, allowing you to enter HTML, CSS and JavaScript, and then display the result of that code as a website — all in one browser tab. Generally speaking, these tools are relatively easy, great for learning, good for sharing code (for example, if you want to share a technique with or ask for debugging help from colleagues in a different office), and free (for basic features). They host your rendered page at a unique web address. However, the features are limited, and these apps usually don’t provide hosting space for assets (like images).

Try playing with some of these examples to find out which one works best for you:

Screenshot of JS Bin web based IDE

Publishing via GitHub

Now let’s examine how to easily publish your site via GitHub Pages.

  1. First of all, sign up for GitHub and verify your email address.

  2. Next, you need to create a repository to store files.

  3. On this page, in the Repository name box, enter username.github.io, where username is your username. For example, our friend Bob Smith would enter bobsmith.github.io. Check the “Initialize this repository with a README” box. Then click Create repository.A sample of a GitHub repository page

  4. Drag and drop the content of your website folder into your repository. Then click Commit changes.

    Note: Make sure your folder has an index.html file.

  5. Navigate your browser to username.github.io to see your website online. For example, for the username chrisdavidmills, go to chrisdavidmills.github.io.

    Note: It may take a few minutes for your website to go live. If your website does not display immediately, wait a few minutes. Try again.

To learn more, see GitHub Pages Help and/or watch this video we’ve prepared for you.

Further reading


Sources and Attributions

Content is based on the following sources:


Project maintained by in-tech-gration Hosted on GitHub Pages — Theme by mattgraham