Week 01

Project Management

icon

This week I worked on defining my final project idea and started getting used to the documentation process. I learned how to develop a website using GitLab and the basics of web languages.

TOOLS

Git, GitLab, HTML, CSS

Web Development Basics

To build this site, I had to understand the "Big Three" of web development:

HTML

The skeleton. It defines the structure: titles, paragraphs, and images.

CSS

The style. It controls the presentation, colors, and layout of the document.

JS

The brain. It allows the page to react and implement complex features.

Mastering Git

Git is a version control system that allows me to track changes and collaborate. Here are the essential commands I used:

git add .

Adds all changes made to the staging area.

git commit -m "message"

Officially saves your changes with a descriptive label.

git push

Sends all your commits from your computer to the remote repository.

git pull

Brings the latest changes from the cloud to your local device.

Setting up the Environment

I cloned my repository to work locally in Visual Studio Code following these steps:

Visual Progress

Here's a look at my first HTML exercises and the structure I planned for the site.

Learning HTML

First steps with tags and structure.

HTML Example

Full HTML example page. View Example →