Intermediate HTML 2 – The Meta Tag and the Class Attribute

Meta Tags meta The meta tag is invisible to the human eye, but it’s visible to the browser and search engines. The meta tag usually has two attributes (name and content), and the name usually describes the content. It uses these attributes to tell the browser certain things about the web page. name=”twitter:site” content=”@PairCode” The … Read more

Beginner JavaScript Part 1

JavaScript is a programming language that runs in your browser. It is the only client-side (runs in your browser) programming language. Its original purpose was to add a little interactivity to static web pages, but now days, it is a full-fledged programming language. A static web page is pretty boring. Besides looking at the content, … Read more

VueJS Overview

VueJS is a JavaScript framework. With VueJS, you can write JavaScript that looks exactly like HTML, except the HTML has additional functionality, and it’s a lot easier to manage data and functions. You can create components, to break up a large application into smaller, easy-to-understand parts. I have used both ReactJS and VueJS. It sounds … Read more

Basic PHP

PHP is a great programming language for anyone to learn. It’s a high-level programming language which means it has a lot of “powerful,” time-saving functions that are very readable and understandable. The learning curve is much lower than other programming languages, but it also has many mature, advanced features. For the most part, we’ll be … Read more

Basic CSS

CSS (cascading style sheets) is used to make HTML pages look pretty. CSS targets content wrapped in HTML tags, and it can even exist at the bottom of the HTML page in a special “style” tag. The code directly below is HTML, but we’re going to style it with CSS. <p id=”unique-p”> I am a … Read more