All blog posts

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

Advertisement


How to Center a HTML Form in CSS

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


How To Create A Simple Right Sidebar In HTML CSS

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


Why your html and css are not linking: how to link CSS to HTML properly

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


Main parts of a web page layout with examples

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


How to make a single line and multi-line comment in HTML

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


How to create internal links to a section on the same page in HTML

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


Can you make a website with just HTML?[Answered]

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


Are HTML tags case sensitive?

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


Learn HTML Guide: things to learn in HTML

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


Best books to learn html for beginners

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


HTML project: Signup Form page

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


10 Famous HTML-only Website Examples

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


How many HTML tags are there in HTML[Answered]

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


HTML Tags List For Table

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


Html Project: Wikipedia page

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


HTML-only Projects For Beginners

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


HTML project: Google search result

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


Youtube Clone page HTML CSS project

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


HTML PROJECTS: Tribute Page

Project Stats Knowledge required: HTML and CSS Difficulty: Beginner friendly. Estimate project completion time: 5 to 10 hours Skill focus... Read more


Learning React in 20 hours: 2nd attempt

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


What is a React Component for Beginners

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


How to upload and add an image to your HTML Codepen project

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


How to find great web developer project ideas

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


15 Projects-based Tutorials to Practice HTML and CSS Skills

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


What is the best way to practice coding?

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