Master Web Development by Building a Website
Follow my journey as I build my website and learn web development along the way.
After a week of research and comparing frameworks, I chose to start with the simplest possible page. This approach allows me to revisit the basics and strengthen my foundation by filling any knowledge gaps.
My goals are:
- Create a simple website
- Explore, research, and learn about web technologies, tools, and best practices
- Enhance, refine, and expand the website by applying what I learn
- Share my journey here
Current situation: Create and Publish a Simple Webpage
Project Setup
- Choose and install an IDE for coding. I use VS Code and its built-in terminal. The following steps are based on that.
- Create a folder locally where you will clone the GitHub project (my folder is called
qapro
). - Open the folder in VS Code and enable the terminal inside VS Code.
- Create a new private repository on GitHub with a
.gitignore
andREADME
file (my repo is calledqapro
). A valid GitHub account is required. - Go to the VS Code terminal and clone the GitHub repo you just created to the current folder (use a dot
.
to indicate the location). - Two files were cloned to the local folder.
- Create a new site on Netlify using the "Import from GitHub" method and follow the steps to connect the GitHub repo to Netlify.
- On the last step – Configure – add a site name, choose the branch to deploy, set the Base directory (e.g.,
/public
), keep the rest of the fields with default values, and click Deploy. - Check your site domain. It should be something like https://qapro.netlify.app.
First Webpage
- Open VS Code, create a
public
folder, and add anindex.html
file with a standard HTML template. - Add the following line to the
<head>
section inside theindex.html
file:<h1>This is a work in progress and a new page should be available soon</h1>
- Commit and push the changes to GitHub.
- Check the changes at https://qapro.netlify.app.
- If needed, connect another domain name to your Netlify site. This will not be covered here as it is a more complex process.
Do Some Research and Learn More HTML and CSS Skills
- Attend some online HTML, CSS, and JS Foundation courses.
- Explore Tools to use for web development.
- Review Simple CSS libraries for quick page styling.
Add Some Simple Styling
- Chose Water.css because it doesn't require installation, keeping the setup simple for now.
-
Add the following line to the page's
<head>
tag:<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
Improve the HTML markup
- If you ever touched any HTML, follow this Web Building Crash Course guide.
- If you never touched any HTML, or want to improve, go through this HTML Tutorial.
- I cannot ephasize enough how important is it to learn the foundations well. This Accessibility Tutorial helps greatly to understand the how and why of HTML pages structure. It should be, in my opinion, a mandatory part of any HTML course.
- Apply the learnings
- Update the
<head>
section - Fix
<body>
layout. Here is a good HTML 5 accessible layout example with good explanation.
- Update the
- Add a simple footer
Add the header or banner if using the Accessibility term
- Skip to main content link - good accessibility practice
- Logo text - just QAPRO
- Navigation - only Master WebDev article for now