Get your nagging questions on HTML and CSS answered through articles and
tutorials.
18 Sep 2021
As a beginner web developer, you already know at least one way of making websites.
However, some clients will come to you with website requirements that your current method cannot achieve.
Inst...
Read more
11 Sep 2021
You can make an image clickable by wrapping the image html tag(<img>) with link html tag(<a></a>).
First, start off by adding an image using HTML.
code:
<img class="linked-im...
Read more
04 Sep 2021
You can use CSS’s border-radius property to make rounded corners HTML buttons.
Rounded corners HTML Buttons
You can make rounded corners button by adding border-radius of 5px to 10px on HTML butto...
Read more
28 Aug 2021
You can make a button without borders in HTML. To remove them, you have to use the border property in CSS and set it to none.
You can use two methods to achieve this:
1. Remove border on HTML but...
Read more
21 Aug 2021
HTML buttons cannot have href attribute if they are created using button <button> </button> HTML tags. However, you can use href attribute if you create the buttons using link <a>...
Read more
14 Aug 2021
You can make elaborate layouts on websites without using CSS frameworks.
You can use CSS Grid and Flexbox to build your layouts. They are now widely supported by majority of the browsers.
Dive in...
Read more
28 Jul 2021
Bootstrap provides fast and easy CSS styles you can use to create website footers. Today, you will be creating two easy to make Bootstrap footers.
1. Simple Bootstrap Footer
The simplest Bootstra...
Read more
24 Jul 2021
Yes, HTML should be indented uniformly because it makes HTML code more readable. This results in an easier to maintain code compared to HTML code without indentations.
How to Indent HTML Code
Ther...
Read more
21 Jul 2021
A website footer is the last section that you see on a website after scrolling all the way to the bottom.
They are great for showing copyright notice.
You can also add links to other legal info...
Read more
17 Jul 2021
A 3-column layout helps you to organize and present your website’s content more effectively.
You can use it to display different sections, such as featured services, product listings, pricing ca...
Read more
14 Jul 2021
Four Equal Columns Layout Flexbox
HTML
<div class="columns">
<div class="column">
/// Column 1: Put any relevant content here ///
</div>
<div class="colum...
Read more
10 Jul 2021
Does HTML interpreters ignore white space
The HTML interpreter ignore white spaces by default. HTML ignore any space added after the first space between words. Any space at the start or end of a H...
Read more
07 Jul 2021
Quick stats for Survey Form Project
Knowledge required: HTML & CSS
Difficulty: Beginner friendly
Estimate completion time: 5 to 20 hours
Forms are a critical component in all website...
Read more
03 Jul 2021
4 Columns Layout HTML CSS Code
HTML
<div class="columns">
<div class="column">
Column 1
</div>
<div class="column">
Column 2
</div>
<div class="...
Read more
30 Jun 2021
Dividing a webpage into 3 columns creates more space to present content especially on desktop and wide screen.
3 columns Layout HTML CSS Code
HTML
<div class="columns">
<div class="col...
Read more
23 Jun 2021
As a web developer, you have a variety of layout you can use to present content on a website.
You can use a two column layout to display:
Related content for example a list of features, pric...
Read more
16 Jun 2021
A good website layout has readable and well organized content.
You can create a good website layout by combining the strengths of two languages: HTML and CSS.
HTML provides the containers that hold...
Read more
03 May 2021
Every day, people across the globe create about 547200 websites. Everyone uses their own process when it comes to creating websites. We can group website creation methods into three different cat...
Read more
03 Apr 2021
With CSS you can add two or more background images to a div through the CSS background property. I will be showing you how to add multiple background pictures to a HTML element.
Adding two backgro...
Read more
20 Mar 2021
When shopping for a website, you need to know what type of website you want and its abilities. You can group websites into two categories based on their features: static and dynamic websites.
Stat...
Read more
13 Mar 2021
You can load an iframe on a webpage even after the webpage has completely loaded. You are going to use javascript to load an iframe through button click.
For this example, you will be using Substa...
Read more
12 Feb 2021
Github provides a free way to publish your HTML website. You don’t need to know git to accomplish this. Follow along this tutorial to get your first HTML website online on Github.
Requirements
...
Read more
11 Feb 2021
Font awesome has inbuilt method of adding circle and background color to its icons. Font awesome uses the idea of icon stacking(putting one icon ontop of another one.
To start off you need to add...
Read more
10 Feb 2021
If don’t have access to Git command line or Github Desktop app, you can still create a folder using Github Website.
Here is how you can do that.
Open the Github repository in which you want to ...
Read more
11 Jan 2021
You can add borders to a parts of a webpage in two ways:
Using CSS border property.
Using CSS border-style, border-width, and border-color properties.
The border is a line that occurs betwee...
Read more