Adding Social Scrape Images

UPDATE — For Facebook, use: <meta property="og:image" content="http://website.com/images/icon.png" /> From the title of this article it may not be immediately understandable what it’s about, but plenty of people are looking for this solution. Many have asked how do I set the image for sharing links? They are referring to social sites like Facebook, Twitter, etc. Adding Social Scrape Images

Any Publicity is NOT Good Publicity

People are very opinionated, to the point of absurdity at times. Some decisions we make are based solely on good and bad associations, regardless of good judgment, logic, or even properly being informed. What separates us from animals is primarily this: An animal’s reality and motivations are based mainly on their instincts A human’s reality Any Publicity is NOT Good Publicity

Words: And How They Make Us Money

It’s quite fascinating really, that is, the innovation of man. I know many people struggle to make money online and many others are successfully doing so. I think we can all agree that having at least some computer skills is pretty vital to having a decent job in today’s and tomorrow’s world. I make all Words: And How They Make Us Money

Dynamic SEO-Friendly .htaccess File

The Code Copy the following to a plain text editor and save as .htaccess. Then, via FTP, upload to the root folder of your website (usually called public_html). It will be suitable for most hosting environments, but not all. You can find the website template I’ve also written which contains this .htaccess example here. <files Dynamic SEO-Friendly .htaccess File

How to Create Circles with CSS

Last Updated: April 6th, 2018 Making circles with CSS is very simple. Just make the radius half of the width and height of the element to make a perfect circle, or simply use: border-radius:50% Responsive Circle With or Without Text Inside Narrow your browser window horizontally to test the circle’s responsiveness. Hello CSS .circle{width:50%;height:0;font-size:20px;color:#fff;text-align:center;line-height:0;padding:25% 0;border-radius:50%;background:#09f} How to Create Circles with CSS

How to Link to the W3C CSS3 Validation Page

Automatic Method: You should now simply use: https://jigsaw.w3.org/css-validator/check/referer?profile=css3. Manual Method: Typically, if we want to link dynamically to the W3C Valid CSS page, we use this link: https://jigsaw.w3.org/css-validator/check/referer That’s perfect if you’re using all CSS2.1, as that’s the default checker, but if you implement even one CSS3 style, you’ll fail validation. So, we can no How to Link to the W3C CSS3 Validation Page