Get your nagging questions on HTML and CSS answered through articles and
tutorials.
19 Dec 2020
The best way to center a form horizontally in HTML and CSS is by using CSS flexbox. It is responsive and works well on mobile, tablet and desktop view.
Previously, we used to rely on methods that ...
Read more
14 Nov 2020
A sidebar is a smaller section of a web page that contains links and components that are important on that website. You usually place it to the right, or left of the main content.
A website can ...
Read more
07 Nov 2020
The proper way to link a CSS file to a HTML file is adding <link rel="stylesheet" type="text/css" href="name-of-the-file.css"> between the <head></head> HTML tags at the top of th...
Read more
24 Oct 2020
There are 5 main parts of any web page layout that you will encounter are. These are:
headers
navigation bars
main content area
sidebars
footers
Most web pages will contain all the f...
Read more
10 Oct 2020
You can create a single line comment by putting <!-- at the start and --> at the end of your comment.
You can also make a multi-line comment in HTML by adding <!-- at the beginning of y...
Read more
26 Sep 2020
You can create a link to a specific section or element on a the same webpage in two steps:
Assign the section/ element an id. <p id="section-1">The link jumps to this paragraph</p>
...
Read more
20 Aug 2020
Yes, you can make a website using your knowledge of HTML only. I have created an example website purely out of HTML that you can checkout for yourself. Here is how it looks like.
You can confirm...
Read more
20 Aug 2020
No. HTML tags are not case sensitive. You can write all HTML tags in lowercase or uppercase and they will be correctly rendered on a browser. This means that <h1>lowercase</h1> and <...
Read more
08 Aug 2020
When learning HTML, you should know the tools and the language used in creating website.
Learning the tools will help you create website with any available tools.
Learning the language will help ...
Read more
08 Jul 2020
Books are wonderful way to learn a new skill. You can learn the Basics of HTML and CSS from well written books in this subject. The two books I would recommend most are written by Shay howe, and Jo...
Read more
05 Jun 2020
Knowledge required: HTML only
Difficulty: Beginner friendly.
Estimate project completion time: 4 hours
Skill focus of the project
Some of the HTML skills that ...
Read more
30 May 2020
When you are starting to learn Web development, you hear about all these languages and frameworks you have to learn. Let me tell you, you don’t need all of them.
At first.
Infact, you can create ...
Read more
28 May 2020
There are 142 and 132 HTML tags according to Mozilla Developer Network(MDN) and HTML.com respectively. I looked at all the major websites that list HTML tags and collected all the numbers in this b...
Read more
09 May 2020
List of all elements used to create a HTML table
You can use the following HTML tags to make a table your web page.
table <table> </table>
thead <thead> </thead>
...
Read more
08 May 2020
Project Stats
Knowledge required: HTML only
Difficulty: Beginner friendly.
Estimate project completion time: 2 hours
Skill Focus of the Project
Some of the HTML skills that you will pr...
Read more
26 Apr 2020
Have you learnt some HTML and want to test your knowledge?
Well, you can use you knowledge to build pure HTML projects.
Your aim will be to create a HTML version of these websites. Your version w...
Read more
08 Apr 2020
Knowledge required: HTML only
Difficulty: Beginner friendly.
Estimate project completion time: 4 hours
Skill focus of the project
Some of the HTML skills that you...
Read more
08 Apr 2020
Knowledge required: HTML only
Difficulty: Beginner friendly.
Estimate project completion time: 2 hours
Skill focus of the project
Some of the HTML skills that ...
Read more
08 Apr 2020
Project Stats
Knowledge required: HTML and CSS
Difficulty: Beginner friendly.
Estimate project completion time: 5 to 10 hours
Skill focus...
Read more
05 Apr 2020
Day 1: The first 2 hours(28th March 2020)
This article in its current state is not meant as a tutorial on react. It is collection of notes I took while learning React. This is my way of keeping a ...
Read more
01 Apr 2020
React has gained immense popularity as a JavaScript library for building user interfaces. One of the fundamental concepts in React is components. In this article, we’ll explore what a React compone...
Read more
26 Feb 2020
If you are having a challenge adding images to a codepen project, this post is for you. I will show you how to add pictures on your codepen project whether you have a free or a Pro codepen account....
Read more
20 Dec 2019
Sometimes, when you are learning to code, you might hit a mental roadblock when it comes to finding project ideas. I have outlined below some of the strategies you can use to come up with meaningfu...
Read more
25 Nov 2019
You can create real world projects using project-based HTML and CSS tutorials. All you have to do is choose one of the 15 projects and follow the tutorial to created it.
There are a lot of courses...
Read more
22 Nov 2019
There are two methods you can use to practice coding. These are:
1) Practice coding by building projects
Projects are the backbone of any coding practice. Most people (if not all) are learning to...
Read more