{"id":10690,"date":"2011-11-03T21:01:13","date_gmt":"2011-11-03T13:01:13","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=10690"},"modified":"2025-04-04T00:43:37","modified_gmt":"2025-04-03T16:43:37","slug":"rss-feed-logo-with-css3","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/","title":{"rendered":"How to Create RSS Feed Logo with CSS3"},"content":{"rendered":"<p><a href=\"https:\/\/www.hongkiat.com\/blog\/tag\/rss\/\">RSS feed logo<\/a> is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using graphic software like Photoshop, but how about <strong>drawing it purely using CSS3<\/strong>? Yeap, you heard me :-)<\/p>\n<p>In this post I would like to show you the easy way to create a standard RSS feed logo with just <a href=\"https:\/\/www.hongkiat.com\/blog\/tag\/css\/\">CSS3<\/a>, so follow the tutorial with comprehensive steps and graphics to get your first CSS3 feed logo!<\/p>\n<p>Here\u2019s a <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/preview\/feed-logo-large.html\">preview<\/a> of what you\u2019ll be creating in a minute. You can also download the source files at the end of the tutorial.<\/p>\n<h3>Step 1<\/h3>\n<p>Create a HTML file, insert the following code into the file if it is completely empty.<\/p>\n<pre>\r\n&lt;html xmlns=\"https:\/\/www.w3.org\/1999\/xhtml\"&gt;\r\n&lt;head&gt;\r\n    &lt;title&gt;My First CSS3 RSS Feed Logo&lt;\/title&gt;\r\n    &lt;style type='text\/css'&gt;\r\n        \/* Insert Your CSS Here *\/\r\n    &lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n    &lt;!-- Insert Your HTML Here --&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>Step 2<\/h3>\n<p>Insert the code below into the HTML file to make a feed box.<\/p>\n<p><strong>HTML for Feed box<\/strong><\/p>\n<pre>\r\n &lt;span class='feed-box'&gt;\r\n &lt;\/span&gt;&lt;!-- .feed-box --&gt;\r\n <\/pre>\n<p><strong>CSS for Feed box<\/strong><\/p>\n<pre>span.feed-box {\r\n  display: block;\r\n  width: 200px;\r\n  height: 200px;\r\n  margin: 0 auto;\r\n  background: #F9A004;\r\n  box-shadow: 1px 1px 0 #C27C03,\r\n              2px 2px 0 #C27C03,\r\n              3px 3px 0 #C27C03,\r\n              4px 4px 0 #C27C03,\r\n              5px 5px 0 #C27C03,\r\n              6px 6px 0 #C27C03;\r\n  -moz-box-shadow: 1px 1px 0 #C27C03,\r\n                   2px 2px 0 #C27C03,\r\n                   3px 3px 0 #C27C03,\r\n                   4px 4px 0 #C27C03,\r\n                   5px 5px 0 #C27C03,\r\n                   6px 6px 0 #C27C03;\r\n  -webkit-box-shadow: 1px 1px 0 #C27C03,\r\n                      2px 2px 0 #C27C03,\r\n                      3px 3px 0 #C27C03,\r\n                      4px 4px 0 #C27C03,\r\n                      5px 5px 0 #C27C03,\r\n                      6px 6px 0 #C27C03;\r\n  -moz-border-radius: 20px;\r\n  -webkit-border-radius: 20px;\r\n  border-radius: 20px;\r\n}\r\n\r\nspan.feed-box * {\r\n  float: right;\r\n  display: block;\r\n}\r\n<\/pre>\n<p>This is the result you will achieve:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg\" alt=\"step 2\" width=\"600\" height=\"329\"><\/figure>\n<h3>Step 3<\/h3>\n<p>We will be drawing another box which is located inside the first feed box, so put the HTML code below into the first feed box\u2019s HTML code. We will also add border as barrier here.<\/p>\n<p><strong>HTML for Smaller Feed Box<\/strong><\/p>\n<pre>\r\n &lt;span class='feed-box-in'&gt;\r\n &lt;\/span&gt;&lt;!-- .feed-box-in --&gt;\r\n <\/pre>\n<p><strong>CSS for Smaller Feed Box<\/strong><\/p>\n<pre>\r\nspan.feed-box .feed-box-in {\r\n  border: 4px solid #FFC563;\r\n  width: 184px;\r\n  height: 184px;\r\n  margin: 4px 4px 0 0;\r\n  -moz-border-radius: 20px;\r\n  -webkit-border-radius: 20px;\r\n  border-radius: 20px;\r\n}\r\n<\/pre>\n<p>This is the result you will achieve:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-3.jpg\" alt=\"step 3\" width=\"600\" height=\"335\"><\/figure>\n<h3>Step 4<\/h3>\n<p>In this step we will be making 1\/4 big circle. Put the HTML code of 1\/4 big circle into the smaller feed box\u2019s HTML code, and below is its code:<\/p>\n<p><strong>HTML for 1\/4 Big Circle<\/strong><\/p>\n<pre>\r\n &lt;span class='feed-quarter-circle-big'&gt;\r\n &lt;\/span&gt;&lt;!-- .feed-quarter-circle-big --&gt;\r\n <\/pre>\n<p><strong>CSS for 1\/4 Big Circle<\/strong><\/p>\n<pre>\r\n span.feed-box .feed-box-in .feed-quarter-circle-big{\r\n margin: 16px 16px 0 0;\r\n width: 260px;\r\n height: 260px;\r\n border: 30px solid #FFDEA5;\r\n -moz-border-radius: 260px;\r\n -webkit-border-radius: 260px;\r\n border-radius: 260px;\r\n }<\/pre>\n<p>This is the result you will achieve:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-4.jpg\" alt=\"step 4\" width=\"600\" height=\"525\"><\/figure>\n<h3>Step 5<\/h3>\n<p>We will be making the 1\/4 small circle now, put the HTML code below into the big circle\u2019s HTML code.<\/p>\n<p><strong>HTML for 1\/4 Small Circle<\/strong><\/p>\n<pre>\r\n &lt;span class='feed-quarter-circle-small'&gt;\r\n &lt;\/span&gt;&lt;!-- .feed-quarter-circle-small --&gt;\r\n <\/pre>\n<p><strong>CSS for 1\/4 Small Circle<\/strong><\/p>\n<pre>span.feed-box .feed-box-in .feed-quarter-circle-big .feed-quarter-circle-small {\r\n  margin: 16px 16px 0 0;\r\n  width: 176px;\r\n  height: 176px;\r\n  border: 26px solid #FFDEA5;\r\n  -moz-border-radius: 176px;\r\n  -webkit-border-radius: 176px;\r\n  border-radius: 176px;\r\n}\r\n<\/pre>\n<p>This is the result you will achieve:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-5.jpg\" alt=\"step 5\" width=\"600\" height=\"516\"><\/figure>\n<h3>Step 6<\/h3>\n<p>In step 6 the smallest circle will be created inside the small circle, so put its HTML code into the small circle\u2019s HTML code.<\/p>\n<p><strong>HTML for Smallest Circle<\/strong><\/p>\n<pre>\r\n &lt;span class='feed-circle'&gt; &lt;\/span&gt;&lt;!-- .circle --&gt;\r\n <\/pre>\n<p><strong>CSS for Smallest circle<\/strong><\/p>\n<pre>span.feed-box .feed-box-in .feed-quarter-circle-big .feed-quarter-circle-small .feed-circle {\r\n    margin: 24px 24px 0 0;\r\n    background: #FFDEA5;\r\n    width: 70px;\r\n    height: 70px;\r\n    -moz-border-radius: 70px;\r\n    -webkit-border-radius: 70px;\r\n    border-radius: 70px;\r\n}\r\n<\/pre>\n<p>This is the result you will achieve:<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-6.jpg\" alt=\"step 6\" width=\"600\" height=\"520\"><\/figure>\n<h3>Finishing Touch<\/h3>\n<p>Search the code, <code>\/* overflow: hidden; *\/<\/code> then replace with this code, <code>overflow: hidden;<\/code>, then yes! You just achieved a CSS3 RSS Feed logo!<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/finishing-touch.jpg\" alt=\"finishing touch\" width=\"600\" height=\"371\"><\/figure>\n<h2>Bonus: Add Hover Effect<\/h2>\n<p>You won\u2019t want your RSS feed logo without magical hover effect, would you? Just add the CSS style below to achieve it!<\/p>\n<p><strong>CSS for Hover Effect<\/strong><\/p>\n<pre>span.feed-box:hover {\r\n  background: #07C103;\r\n  box-shadow:\r\n    1px 1px 0 #058E02,\r\n    2px 2px 0 #058E02,\r\n    3px 3px 0 #058E02,\r\n    4px 4px 0 #058E02,\r\n    5px 5px 0 #058E02,\r\n    6px 6px 0 #058E02;\r\n  -moz-box-shadow:\r\n    1px 1px 0 #058E02,\r\n    2px 2px 0 #058E02,\r\n    3px 3px 0 #058E02,\r\n    4px 4px 0 #058E02,\r\n    5px 5px 0 #058E02,\r\n    6px 6px 0 #058E02;\r\n  -webkit-box-shadow:\r\n    1px 1px 0 #058E02,\r\n    2px 2px 0 #058E02,\r\n    3px 3px 0 #058E02,\r\n    4px 4px 0 #058E02,\r\n    5px 5px 0 #058E02,\r\n    6px 6px 0 #058E02;\r\n}\r\n\r\nspan.feed-box:hover .feed-box-in {\r\n  border-color: #58FC55;\r\n}\r\n\r\nspan.feed-box:hover .feed-box-in .feed-quarter-circle-big,\r\nspan.feed-box:hover .feed-box-in .feed-quarter-circle-big .feed-quarter-circle-small {\r\n  border-color: #B9FFB7;\r\n}\r\n\r\nspan.feed-box:hover .feed-box-in .feed-quarter-circle-big .feed-quarter-circle-small .feed-circle {\r\n  background: #B9FFB7;\r\n}\r\n<\/pre>\n<h2>Previews and Downloads<\/h2>\n<p>Here are previews of the CSS3 feed logo in varies sizes and a different style. If you can\u2019t achieve certain step, you can download the source files too.<\/p>\n<ul>\n<li> <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/preview\/feed-logo-large.html\">Preview CSS3 RSS logo<\/a> <em>(large)<\/em> <\/li>\n<li> <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/preview\/feed-logo-medium.html\">Preview CSS3 RSS logo<\/a> <em>(medium)<\/em> <\/li>\n<li> <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/preview\/feed-logo-small.html\">Preview CSS3 RSS logo<\/a> <em>(small)<\/em> <\/li>\n<li> <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/preview\/feed-logo-medium-inverted.html\">Preview CSS3 RSS logo<\/a> <em>(medium, inverted)<\/em> <\/li>\n<li> <a rel=\"noopener\" target=\"_blank\" href=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/css3-feed-logo.zip\">Download CSS3 RSS Logo source files<\/a> <em>(.zip)<\/em> <\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using graphic software like Photoshop, but how about drawing it purely using CSS3? Yeap, you heard me :-) In this post I would like to show&hellip;<\/p>\n","protected":false},"author":214,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3392],"tags":[507,506,2016,432],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Create RSS Feed Logo with CSS3 - Hongkiat<\/title>\n<meta name=\"description\" content=\"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create RSS Feed Logo with CSS3\" \/>\n<meta property=\"og:description\" content=\"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2011-11-03T13:01:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T16:43:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg\" \/>\n<meta name=\"author\" content=\"Irham Kendeni\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Irham Kendeni\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/\"},\"author\":{\"name\":\"Irham Kendeni\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/6b6b35fed47202b91a43aaebb44811e0\"},\"headline\":\"How to Create RSS Feed Logo with CSS3\",\"datePublished\":\"2011-11-03T13:01:13+00:00\",\"dateModified\":\"2025-04-03T16:43:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/\"},\"wordCount\":443,\"commentCount\":59,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/css3-rss-feed-logo\\\/step-2.jpg\",\"keywords\":[\"CSS\",\"HTML\",\"HTML5 \\\/ CSS3 Tutorials\",\"RSS (Rich Site Summary)\"],\"articleSection\":[\"Coding\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/\",\"name\":\"How to Create RSS Feed Logo with CSS3 - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/css3-rss-feed-logo\\\/step-2.jpg\",\"datePublished\":\"2011-11-03T13:01:13+00:00\",\"dateModified\":\"2025-04-03T16:43:37+00:00\",\"description\":\"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/css3-rss-feed-logo\\\/step-2.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/css3-rss-feed-logo\\\/step-2.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/rss-feed-logo-with-css3\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create RSS Feed Logo with CSS3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/6b6b35fed47202b91a43aaebb44811e0\",\"name\":\"Irham Kendeni\",\"description\":\"Irham, also known as Indaam, is a web designer and developer from Indonesia. He also loves CSS and WordPress theme development.\",\"sameAs\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"],\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/irhamkendeni\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Create RSS Feed Logo with CSS3 - Hongkiat","description":"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/","og_locale":"en_US","og_type":"article","og_title":"How to Create RSS Feed Logo with CSS3","og_description":"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using","og_url":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2011-11-03T13:01:13+00:00","article_modified_time":"2025-04-03T16:43:37+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg","type":"","width":"","height":""}],"author":"Irham Kendeni","twitter_card":"summary_large_image","twitter_creator":"@hongkiat","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Irham Kendeni","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/"},"author":{"name":"Irham Kendeni","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/6b6b35fed47202b91a43aaebb44811e0"},"headline":"How to Create RSS Feed Logo with CSS3","datePublished":"2011-11-03T13:01:13+00:00","dateModified":"2025-04-03T16:43:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/"},"wordCount":443,"commentCount":59,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg","keywords":["CSS","HTML","HTML5 \/ CSS3 Tutorials","RSS (Rich Site Summary)"],"articleSection":["Coding"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/","url":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/","name":"How to Create RSS Feed Logo with CSS3 - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg","datePublished":"2011-11-03T13:01:13+00:00","dateModified":"2025-04-03T16:43:37+00:00","description":"RSS feed logo is one of most commonly used logo in web design, due to the function it referred. You saw many tutorials on drawing the RSS feed logo using","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/css3-rss-feed-logo\/step-2.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/rss-feed-logo-with-css3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Create RSS Feed Logo with CSS3"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/6b6b35fed47202b91a43aaebb44811e0","name":"Irham Kendeni","description":"Irham, also known as Indaam, is a web designer and developer from Indonesia. He also loves CSS and WordPress theme development.","sameAs":["https:\/\/www.hongkiat.com\/blog\/"],"url":"https:\/\/www.hongkiat.com\/blog\/author\/irhamkendeni\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-2Mq","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/10690","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/214"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=10690"}],"version-history":[{"count":4,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/10690\/revisions"}],"predecessor-version":[{"id":73506,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/10690\/revisions\/73506"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=10690"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=10690"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=10690"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=10690"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}