how to create a CSS class

How to create a class in HTML and CSS

In CSS you need to be able to select something on the HTML page to be able to style it.  Let’s take this HTML page for example: <!DOCTYPE html> <html lang=””> <head> <meta charset=”utf-8″> <title></title> </head> <body> <div>Style Me</div> </body> </html> On that page, we …

Read More

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

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

create javascript object

How to create a JavaScript Object

In JavaScript, there is a thing called an object.  It’s something that can contain a value that is equal to something else.  Those are called key/value pairs.  There’s a key that is equal to some value.  It’s a way that you can have a variable …

Read More