html tooltip

How to create a tooltip using only HTML

Sometimes websites aren’t very specific.  You see something on the page but have no idea what to do with it or what it’s for.  Enter tooltips!  They are helpful little windows that pop up to explain what something is on a webpage.  They usually show …

Read More

redirect page with only HTML

How to redirect a HTML page

Sometimes in the web design world, you’ll need to redirect a page.  Maybe it’s because the page no longer exists, the page has been updated and moved, or it could be a page that you don’t want the user to be on for very long.  …

Read More

for vs for in loops

For of vs For in JavaScript Loops

In JavaScript there are two kinds of for loops: for of and for in.  The difference can be seen when looping through arrays.  Let’s take this array for example: var greetings = [“Hi”,”Hey”,”Hello”] It’s just a normal array with three strings (words) in it called …

Read More

create basic vue page

How to start a basic Vue.js page

If you want to dive into Vue.js and don’t want to mess around with Node.js and other installs this post is for you. To start using Vue.js in a webpage, all you need to do is set up a CDN (content delivery network) link just …

Read More