Favorite Fonts Readability > Aesthetic Arial (very easy to read) [wikipedia] Calibri (does it look better than Arial on paper? I think it does…) [wikipedia] Kozuka Gothic (elegant for ad copy) Magneto (Signature) Mool Boran (Signature) OCR A std (code aesthetic) [wikipedia] Lucida Console (Great code aesthetic) [wikipedia] Prestige Elite Std (code aesthetic) [wikipedia] GIFs […]
Category: Website Authority
Fetching the Correct Featured Image for Reddit Thumbnail on WordPress
Possible Fix #1 In this post I will show you how to force Reddit to choose the correct Image to show when you submit a link to Reddit from you WordPress website. So in the header of your website, specifically between the <header> </header> tags, you need to insert this piece of code: <meta property=”og:image” […]

Improving Website Speed, Navigation, & User Interface for Better SEO
In this article, I will be revealing to you the tips that I’ve learned to improve website SEO. I’ve been a webmaster for almost 2 years, and I’ve learned a lot when it came to making & maintaining a website. But the most important factor for many webmasters is to actually get traffic to their […]

What Social Media is Best for Boosting Traffic to Your Website?
TL;DR: You should focus primarily on using YouTube, Reddit, and Quora for Driving Traffic to your Website. They have the greatest return in investment. For any blog or website to be successful, there must be visitors to that blog or website. Otherwise, the blog or website becomes nothing more than a book without a reader. […]

HTML for Simple Website Customization
Some HTML knowledge I implement on my blog to manipulate the webpage as I need… Tables The Code for a 3×3 Table: <table> <tbody> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>4</td> <td>5</td> <td>6</td> </tr> <tr> <td>7</td> <td>8</td> <td>9</td> </tr> </tbody> </table> Demonstration of 3×3 table: 1 2 3 4 5 6 7 8 9 Table […]