Personal Website

Make your first website from scratch

MaxWofford@MaxWofford

For a limited time: build your site & get a free bubble tea

Prophet Orpheus, our mascot, is here to guide you through making your own personal website.

It will look something like this:

dinosaur reading a book

Here's the live demo and final code (see index.html and style.css).

This workshop should take around 45 minutes.

Part I: Setup

Getting ready to code it on Codespaces

Github Codespaces is an online code editor. It's similar to Google Docs, but has some important features that make it much better for typing code than a regular text editor.

To get started, make a Github account (or login if you have one) at https://github.com/signup.

Then, go to https://github.com/new.

Enter a name, select "MIT License" underneath "Choose a license", and then click "Create repository"

Input fields for creating a repository

Next, go to https://github.com/codespaces/new.

Create codespace

Select the repository that you just created, and then then click "Create codespace"

Wait a bit for the codespace to load and then you should see this:

New codespace

Congrats! You created a codespace. This is where you will write the code for your website.

If you are using Firefox, you may have to disable Enchanced Tracking Protection.

Part II: The HTML File

1) The HTML file

HTML stands for Hypertext Markup Language. Every website from the New York Times to Twitch uses HTML to display content on the web.

Create a index.html file by clicking the + button in the top and writing index.html

Create index.html

Type, in the index.html file, the following code. DO NOT COPY AND PASTE.

<!DOCTYPE html>
<html>
  <head> </head>
  <body></body>
</html>

This structure is common to all HTML pages. In fact, you can take a look for yourself! Just right click on any web page, including this one, and click "View page source" (sometimes called "Inspect" depending on your browser) to see what's going on behind the scenes. You'll find each of these elements on every page – the doctype, and an HTML tag wrapped around a head and body.

Inspect element panel containing html and css styles for a website

Before proceeding, we'll briefly go over what our template means.

HTML works by storing information inside tags. <html></html> is an example of one such tag. Inside <html></html>, we've placed two other sets of tags: <head></head> (which wraps around the "head") and <body></body> (which wraps around the "body"). The body holds everything you would see in the actual tab/window when you open the page, while the head conveys information about the page to the browser.

<!DOCTYPE html> tells the browser what version of HTML to expect. Since it is a language, HTML is constantly growing and updating, so there are multiple versions. In our case, we are going to use HTML5, the latest version.

2) Previewing the Page

Let's check out what our HTML file looks like in Live Preview!

To do this, click on the extensions button in the left pane

Left pane

Then, search for Live Server and click Install

Searching for extension

Then, go to the files again (Click on the first button in the left pane) and click Go Live! in the status bar

Status bar

A new tab should open with your page!

Every time you save (Ctrl+S) your page the live preview will update.

2.1) (Optional) Preview the page in the editor

Press F1 and type Simple Browser

Command Palete

Press enter and input the link of the new tab that opened in the previous step and press enter again

You should now have the preview alongside the editor!

Preview in editor

3) Adding Text to the Body

As you can see, the page is blank. This is because we haven't added anything to the body section yet. Let's add some content!

As mentioned before, all information is wrapped in tags. Tags are predefined in the language; think of them as the words in the language. For text, HTML provides a number of tags to store text. We'll be using two of the most basic ones: the h1 tag (<h1>) and the paragraph tag (<p>). The h1 tag is the first in a series of heading tags, with h1 being the highest ranking, and h6 being the lowest ranking. Just as with the other tags, you can place information within the these tags by surrounding your content with an opening and closing tag.

Go ahead and add your name in a heading tag, and your description in a paragraph tag, in between the opening (<body>) and closing (</body>) tags. Here is Prophet Orpheus's name and description:

<!DOCTYPE html>
<html>
  <head> </head>
  <body>
    <h1>Prophet Orpheus</h1>
    <p>Coder Dino Will code for food</p>
  </body>
</html>

If your description was a few paragraphs, or had line breaks, you may have noticed that one <p></p> doesn't quite cut it. Adding extra blank lines or spaces between words in HTML does not change the spacing of the content. We can solve this by placing each paragraph in its own <p></p>.

<!DOCTYPE html>
<html>
  <head> </head>
  <body>
    <h1>Prophet Orpheus</h1>
    <p>Coder Dino</p>
    <p>Will code for food</p>
  </body>
</html>

Save your index.html and look at the Live Preview. Yay!

4) Adding Images to the Body

First, find an image you would like to include in your page. You can find something on Google Images, Facebook, or Imgur. We'll need the source URL of the image, so right click and select "Copy Image Address".

Images are included in HTML via the image tag, or <img>. The image tag has an attribute called src, which will hold the source URL of the image you want to display. As an example, if I were to add this picture of Prophet Orpheus, I would right click it and get the source URL, which in this case is https://github.com/hackclub/dinosaurs/raw/main/smart_dinosaur_docs.png, and put it in an image tag like so:

<img
  src="https://github.com/hackclub/dinosaurs/raw/main/smart_dinosaur_docs.png"
/>

You may have noticed that the image tag doesn't have a closing tag like <h1></h1> or <body></body>. That's because it is a void element, meaning that it doesn't have any contents.

Go ahead and add this into your index.html now. I put my picture before my heading, and my code looks like this:

<!DOCTYPE html>
<html>
  <head> </head>
  <body>
    <img
      src="https://github.com/hackclub/dinosaurs/raw/main/smart_dinosaur_docs.png"
    />
    <h1>Prophet Orpheus</h1>
    <p>Coder Dino</p>
    <p>Will code for food</p>
  </body>
</html>

dinosaur reading a book and text describing it below

Remember, you need to save your program every time you want to see your updated website.

Though our website has some text on it and exists on the internet, we're not done. Our webpage is fully functional, but needs a little help in the look-and-feel department. Fret not. CSS will allow you to manipulate the styling of your page in all your needs.

Part III: The CSS File

So what is CSS? CSS, also known as Cascading Style Sheets, is a language used for styling the tags (or "elements") on a web page.

While HTML oversees the content and the way it's structured, CSS is how you'll specify how you'd like your content to look—with it you can set things like colors, spacing, and more.

1) Using CSS

Create a style.css file like you created index.html. This is called an external style sheet because the CSS file is external to the HTML file (i.e., the stylesheet is not inside the HTML file).

Although we have a CSS file now, until we explicitly tell the HTML file to use the CSS file, it will not use it. We must explicitly link the CSS file in the HTML. We'll do this by typing the following into the head of index.html (between <head> and </head>), because the head is where we tell information about the page to the browser.

<link rel="stylesheet" href="style.css" />

<link /> is the link tag, which describes relationships between the current file (in this case, index.html), and some external file (style.css). In our example, rel="stylesheet" specifies what this relationship is, i.e., that style.css is a stylesheet, and href (hypertext reference) specifies where the file can be found (in this case, it's just the filename style.css). The link tag, similar to the image tag, is a self-closing tag, once again denoted by the / that precedes the >.

Our HTML file now looks like so:

<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <img
      src="https://github.com/hackclub/dinosaurs/raw/main/smart_dinosaur_docs.png"
    />
    <h1>Prophet Orpheus</h1>
    <p>Coder Dino</p>
    <p>Will code for food</p>
  </body>
</html>

2) Adding Styles to the Stylesheet

Now that we've linked our CSS file to our HTML file, let's write some CSS to resize the image.

Open up style.css and type the following:

img {
  width: 200px;
}

A CSS stylesheet contains "rules," each of which consists of a selector, and attributes and values within brackets, known as a "declaration block".

In our case, the selector is img. This merely selects all image tags (and thus, all images). The rule then says to set the width (width) of all things selected (in our case, all the images) to 200px. px refers to pixels, which are a unit of measurement on the screen. When this rule is applied, all the images on our page will have a width of 200 pixels.

Next, we're going to center-align the entire body section.

We'll add

body {
  text-align: center;
}

As with resizing the image, this rule specifies that every body tag should have a text-align attribute of center. This centers everything on our page because all of the content in our HTML file is written inside the body tag.

Now let's change the font of our text. We'll add another attribute, font-family, to the body rule, and set the value to "Arial". Now it will look like this:

body {
  text-align: center;
  font-family: 'Arial';
}

You can take this even further by adding a bit of color to the page! The attribute color (spelled without a u) allows you to set the text color, and background-color allows you to set a background color. You can find a list of supported color names over at W3Schools. Keep in mind that it's a good idea to pick a combination of colors will keep the text readable.

body {
  text-align: center;
  font-family: 'Arial';
  background: azure;
  color: purple;
}

Now be sure to save to get the most recent version of your website. Ah, it is truly beautiful to behold.

Children celebrating

Part IV: Publishing

Right now only you can see your website. Let's fix that!

Click on the the "Git" tab on the left pane

Left pane

Write a cool commit message at the top and then click Commit

Git panel

Then, click Always on the pop-up

pop-up

Now, we need to go to our GitHub account and open the repo we created at the start of this workshop. Once you have it open, follow the instructions in the below image:

Github settings

Change deployment branch to "main"

Now everything is wired up! You can publish your site now, or any time in the future by following the steps below.

Publishing changes

Commit your changes

Whenever you add a new feature or fix, you'll have to commit the lines of code that you changed.

Go to the "Git" tab on the left of your codespace, fill out a "Commit message", and click "Commit"

Git tab

And just like that, your new changes are now published at the URL USERNAME.github.io/REPONAME on the internet for all your friends to see!

Give it 2 minutes to deploy your changes the first time!

Two people singing and moving side to side in a car

For a limited time: get a free bubble tea after your site deploys

Part V: Hacking

In this section, your challenge is to add additional features to your website to make it your own!

Want to use a different font? Google it!
Want to add more pictures? Google it!
Want to add more text? Your entire life story? Background image? Background music? Video? More pages? Google it!

A good way to get ideas for what to add to your website is to look at other people's websites. Find a website that you like, either from the below list or from somewhere else on the internet, pick one aspect of that website that you would like on your own website, and Google for ways to make it happen!

Websites Made by Other Hack Club Hackers:

Websites Made by Professionals:

Additional Resources

These are some additional resources that you can use to make your site even better!

  • HTML Dog: Very beginner focused. If you're not sure which one to choose, pick this one.
    • If you also want to learn more about how to style your website with CSS, check out their CSS tutorial.
  • Free Code Camp: Interactive and very methodical.
  • Treehouse: Their videos are extremely comprehensive and thorough.

Part VI: Sharing with the Community

Now that you have finished building a website, you should share your beautiful creation—because your site is on the internet, you can share it with anyone who is also online! Remember, it's as easy as giving them your URL!

You probably know the best ways to get in touch with your friends and family, but if you want to share your project with the world wide Hack Club community there is no better place to do that than on Slack.

  1. In a new tab, open and follow these directions to signup for our Slack.
  2. Then, post the link to the #ship channel to share it with everyone!

We'd love to see what you've made!

Share a link to your project (through Replit, GitHub etc.)