← Back to Lessons

Start a new HTML/CSS Project

If you are working locally

The most basic template for any 4Geeks Academy Student, ideal for starting your first HTML/CSS website.

If you are working locally

  • Download and install python using pyenv (recommended).
  • Download the repository template.

If you are working from Codespaces or Gitpod

How to open html/css preview of my project

What to do next?

Create a index.html file with the basic HTML structure and see it live by running web-server using the following command:

1pip install flask && python server.py
  • You can create as many HTML files you want
  • You can also create CSS files and you can import them onto your website using a <link> tag placed between the <head></head> tags, like this:
1<head> 2 ... 3 <link rel="stylesheet" type="text/css" href="styles.css"> 4 ... 5</head>