My Personal Web Customization

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 […]

Read More

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” […]

Read More

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 […]

Read More