All blog posts

Get your nagging questions on HTML and CSS answered through articles and tutorials.

Advertisement


How do I learn HTML?

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


Why do we use Flexbox? – Answered

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


How can I improve my HTML and CSS Skills?[Answered]

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


How to get and set margin in Javascript

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


.map() method in javascript- Beginner guide

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


What does form do in HTML?

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


What is HTML and CSS used for? [Answered]

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


9 Steps to Create a Web Page using Basic HTML for Beginners[Illustrated guide]

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


How to Run HTML File on Localhost

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


What html tags are used in creating forms

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


How to Learn HTML for Free

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


How to Display HTML Tags as Plain Text in HTML

You can show HTML tags as plain text in HTML on a website or webpage by replacing < with   &lt;  or &60; and >   with  &gt; or &62; on each HTML tag that you want to be visibl... Read more


100 HTML PRACTICE PROJECTS IDEAS

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


How to Learn and Practice HTML & CSS Offline

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


Javascript Preview Image Before Upload

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


How To Change Padding Using Javascript

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


Learn HTML For Beginners With Examples: Practical Guide

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