How to Properly Submit a DMOZ Listing

DMOZ has now been closed. An unofficial clone, that this tutorial may still be relevant to, has been created here. A lot of people want to get listed on DMOZ.org (Open Directory Project). Why? Because Google likes DMOZ. What weight this has on your PageRank or SERPs isn’t precisely known. But, it certainly can’t hurt. How to Properly Submit a DMOZ Listing

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

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