Get your nagging questions on HTML and CSS answered through articles and
tutorials.
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
07 Sep 2019
Maybe you have heard that HTML is the language used to make websites and you are wondering how do I learn this new language. Fortunately, for you there is enough learning materials and html is no...
Read more
19 Aug 2019
We use flexbox because we want to:
display a collection of items in either the horizontal or vertical direction.
control the dimensions of the items in that one dime...
Read more
11 Aug 2019
There are two steps you can use in order to improve your HTML and CSS skills:
Practice HTML and CSS using the knowledge you already know by building projects.
Identif...
Read more
23 Jul 2019
Margin in javascript is the same margin in html. You can set the amount of margin an element has using Javascript. To be clear, margin is the space between the border and the outside container hold...
Read more
18 Jul 2019
I ran into a challenge that required use of .map(), .reduce() and .filter() methods. Previously, I have been tiptoeing around ES6 syntax. Why you ask? I found it a bit tough for me to understand.
...
Read more
13 Jul 2019
A HTML form is used to get user input on a website(or web app) and then use the input to interact with a server. The HTML form element does three things:
...
Read more
09 Jun 2019
HTML was the first technology that first powered the first website. Those websites had very minimal features. Today, HTML and CSS are still in use and they do so much more. Today we will look at wh...
Read more
07 Jun 2019
If you have ever wondered how HTML is used to make websites with pictures and videos, you have landed at the right place. I am going to walk you through the 9 steps of building a one page website...
Read more
30 Apr 2019
Normally when I want to view a HTML file, I just right-click it and choose to open it with a web browser. However, I wanted to run a html page using localhost. I went online, researched and found...
Read more
21 Apr 2019
The html tags used in creating forms online are <form> </form> tags pair. These 2 html tags are the container that holds other tags that create the form fields to be filled. The tags us...
Read more
04 Apr 2019
You have heard that HTML is used to make website. This post is for you if you want to learn HTML but you have still have some nagging questions.
Yes, you can learn HTML without having to go ...
Read more
02 Apr 2019
You can show HTML tags as plain text in HTML on a website or webpage by replacing < with < or &60; and > with > or &62; on each HTML tag that you want to be visibl...
Read more
31 Mar 2019
Back when I was learning HTML, I had a hard time coming up with HTML practice project ideas. You may be going through the same challenge. I made this list so that you don’t waste time trying to f...
Read more
28 Mar 2019
You can practice HTML offline by using a browser, a text editor and a reference guide. The reference guide can be a book, website, or video(saved offline).
By now I am assuming you have learnt s...
Read more
20 Feb 2019
When users are uploading images, they are not sure if they are uploading the right image. You can help them by adding image preview before upload. Fortunately, you can do this with just HTML and Ja...
Read more
16 Feb 2019
In this guide, you’ll learn how to change padding dynamically using Javascript, with a focus on an interactive button.
There are two ways you can go about doing this.
1: Using JavaScript Only
Fo...
Read more
18 Jan 2019
In this beginner-friendly guide your will learn the basics of HTML through a hands-on and practical approach. This guide is tailored for anyone with interest in learning HTML and how it contribut...
Read more