How to Add Responsiveness to Your Webpages

Many of us web developers struggle with correctly displaying the elements of our webpages on different screens around the globe. With the advent of the smartphone industry, we have to cover screens less than the SD or HD resolutions to which we were used to. The technique of making a webpage appear similarly in most screen sizes is known as Responsive Web Design (RWD). A responsive webpage or website, according to Wikipedia is:

an approach to web design aimed at allowing desktop webpages to be viewed in response to the size of the screen or web browser one is viewing with.

Continue reading “How to Add Responsiveness to Your Webpages”

Move Item to Next Row on Resize with Flexbox

In this tutorial, I’ll show how to make items of a flexbox to go to the next line on the window resize.

There comes a time in life when you need to create layouts where block snaps to next line when the window is too narrow. This is a best practice in responsive web design.

Continue reading “Move Item to Next Row on Resize with Flexbox”

What is Illegal Character \8220 & \8221 Error Messages and How to fix it

Today I was reading an e-book on Java programming language and enjoying and learning from it.

Every thing was fine until I reached up to arrays section. The problem from that exercise was a bit long, so instead of typing the whole code I decided to copy and paste, and then compile them. As soon as I typed:

javac arrayExample.java

I got not one, nor two but a whole bunch of 100 errors. This was the first time when I received so much error in a such small Java source file. I was surprised seeing that. For fixing it I tried as much as I can, following are which I tried:

Continue reading “What is Illegal Character \8220 & \8221 Error Messages and How to fix it”