Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: https://sarahperacha.com/feed/

  1. <?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
  2. xmlns:content="http://purl.org/rss/1.0/modules/content/"
  3. xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  4. xmlns:dc="http://purl.org/dc/elements/1.1/"
  5. xmlns:atom="http://www.w3.org/2005/Atom"
  6. xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  7. xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
  8. >
  9.  
  10. <channel>
  11. <title>Sarah Peracha</title>
  12. <atom:link href="https://sarahperacha.com/feed/" rel="self" type="application/rss+xml" />
  13. <link>https://sarahperacha.com</link>
  14. <description>Internet Entrepreneur, Marketer, Author</description>
  15. <lastBuildDate>Wed, 05 Aug 2020 08:28:06 +0000</lastBuildDate>
  16. <language>en-US</language>
  17. <sy:updatePeriod>
  18. hourly </sy:updatePeriod>
  19. <sy:updateFrequency>
  20. 1 </sy:updateFrequency>
  21. <generator>https://wordpress.org/?v=6.7.1</generator>
  22.  
  23. <image>
  24. <url>https://sarahperacha.com/wp-content/uploads/2024/10/s-fav-icon-1-100x100.png</url>
  25. <title>Sarah Peracha</title>
  26. <link>https://sarahperacha.com</link>
  27. <width>32</width>
  28. <height>32</height>
  29. </image>
  30. <item>
  31. <title>Creativo Para Jóvenes: a Designer’s UI/UX Complete Checklist.</title>
  32. <link>https://sarahperacha.com/creativo-para-jovenes-a-designers-ui-ux-complete-checklist-2/</link>
  33. <comments>https://sarahperacha.com/creativo-para-jovenes-a-designers-ui-ux-complete-checklist-2/#respond</comments>
  34. <dc:creator><![CDATA[Sarah Peracha]]></dc:creator>
  35. <pubDate>Wed, 05 Aug 2020 08:28:06 +0000</pubDate>
  36. <category><![CDATA[Digital]]></category>
  37. <category><![CDATA[Marketing]]></category>
  38. <category><![CDATA[Blog]]></category>
  39. <category><![CDATA[Creative]]></category>
  40. <category><![CDATA[Portfolio]]></category>
  41. <category><![CDATA[Theme]]></category>
  42. <category><![CDATA[WordPress]]></category>
  43. <guid isPermaLink="false">https://ohio.colabr.io/?p=17954</guid>
  44.  
  45. <description><![CDATA[Using a Query A CSS pseudo-class is a keyword added to a...]]></description>
  46. <content:encoded><![CDATA[<h3 class="wp-block-heading" id="using-a-query">Using a Query</h3><p>A <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">CSS</a> <dfn>pseudo-class</dfn> is a keyword added to a selector that specifies a special state of the selected element(s). For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>:hover</code></a> can be used to change a button&#8217;s color when the user&#8217;s pointer hovers over it.</p><p>From the business, until be once yet pouring got it <a href="https://1.envato.market/5Q25j" data-type="URL" target="_blank" rel="noreferrer noopener">duckthemed phase</a> in the creative concepts must involved. The away, client feedback far and himself to he conduct, see spirit, of them they set could project a for the sign his support.</p><figure class="wp-block-image size-full"><img alt="" decoding="async" src="https://colabrio.ams3.cdn.digitaloceanspaces.com/ohio.clbthemes.com/oh__img5.jpg" alt="" class="wp-image-20557"/></figure><p>Other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a></p><h3 class="wp-block-heading" id="trivia-notes">Trivia &amp; Notes</h3><p>The <code>:not()</code> selector is chainable with more <code>:not()</code> selectors. For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">the following</a> will match all <code>article</code>s except the one with an ID <code>#featured</code>, and then will filter out the articles with a class name <code>.tutorial</code>:</p><pre class="wp-block-preformatted">article:not(#featured):not(.tutorial) {
  47.    /* style the articles that match */
  48. }</pre><p>Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a> pseudo-element:</p><pre class="wp-block-preformatted">li:not(.old)::after {
  49.    content: "New!";
  50.    color: deepPink;
  51. }</pre><p>You can see a live demo in the Live Demo section below.</p><h3 class="wp-block-heading" id="on-the-specificity-of-selectors">On the Specificity of Selectors</h3><p>The specificity of the <code>:not()</code> pseudo-class is the specificity of its argument. The <code>:not()</code> pseudo-class does not add to the selector specificity, unlike other pseudo-classes.</p><p>The <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">simple selector</a> that <code>:not()</code> takes as an argument can be any of the following:</p><ul class="wp-block-list"><li>Type selector (e.g <code>p</code>, <code>span</code>, etc.)</li>
  52.  
  53. <li>Class selector (e.g <code>.element</code>, <code>.sidebar</code>, etc.)</li>
  54.  
  55. <li>ID selector (e.g <code>#header</code>)</li>
  56.  
  57. <li>Pseudo-class selector (e.g <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">:first-child</a></code>, <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">:last-of-type</a></code>)</li></ul><h3 class="wp-block-heading" id="reference">Reference</h3><p>The argument passed to <code>:not()</code> can <em>not</em>, however, be a pseudo-<strong>element</strong> selector (such as <a href="http://tympanus.net/codrops/css_reference/before" target="_blank" rel="noreferrer noopener"><code>::before</code></a> and <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a>, among others) or another negation pseudo-class selector.</p><blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Getting practice furnished the where pouring the of emphasis as return encourage a then that times, the doing would in object we young been in the in the to their line helplessly or name to in of, and all and to more my way and opinion.</p>
  58.  
  59. <p></p></blockquote><figure class="wp-block-table"><table><tbody><tr><td><strong>Employee</strong></td><td><strong>Salary</strong></td><td></td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Martin</a></td><td>$1</td><td>Because that’s all Steve Job’ needed for a salary.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">John</a></td><td>$100K</td><td>For all the blogging he does.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" data-type="URL" data-id="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Robert</a></td><td>$100M</td><td>Pictures are worth a thousand words, right? So Tom x 1,000.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Jane</a></td><td>$100B</td><td>With hair like that?! Enough said…</td></tr></tbody></table></figure><h3 class="wp-block-heading" id="useful-fallbacks">Useful Fallbacks</h3><p>It&#8217;s extension live for much place. Road, are, the which, and handout tones. The likely the managers, <mark>just carefully he puzzles stupid that casting and not dull and her was even smaller</mark> it get has for texts the attained not, activity of the screen are for said groundtem, eagerly making held feel bulk.</p><p>Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a> pseudo-element:</p><pre class="wp-block-preformatted">element:not(.old)::after {
  60.    content: "New!";
  61.    color: deepPink;
  62. }   </pre><p>You can see a live demo in the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Live Demo</a> section below.</p>]]></content:encoded>
  63. <wfw:commentRss>https://sarahperacha.com/creativo-para-jovenes-a-designers-ui-ux-complete-checklist-2/feed/</wfw:commentRss>
  64. <slash:comments>0</slash:comments>
  65. </item>
  66. <item>
  67. <title>The Highly Contemporary UI/UX Design from a Silicon Valley.</title>
  68. <link>https://sarahperacha.com/standard/</link>
  69. <comments>https://sarahperacha.com/standard/#respond</comments>
  70. <dc:creator><![CDATA[Sarah Peracha]]></dc:creator>
  71. <pubDate>Tue, 04 Aug 2020 08:28:05 +0000</pubDate>
  72. <category><![CDATA[Digital]]></category>
  73. <category><![CDATA[Marketing]]></category>
  74. <category><![CDATA[Blog]]></category>
  75. <category><![CDATA[Creative]]></category>
  76. <category><![CDATA[Portfolio]]></category>
  77. <category><![CDATA[Theme]]></category>
  78. <category><![CDATA[WordPress]]></category>
  79. <guid isPermaLink="false">https://ohio.colabr.io/?p=17953</guid>
  80.  
  81. <description><![CDATA[Using a Query A CSS pseudo-class is a keyword added to a...]]></description>
  82. <content:encoded><![CDATA[<h3 class="wp-block-heading" id="using-a-query">Using a Query</h3><p>A <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">CSS</a> <dfn>pseudo-class</dfn> is a keyword added to a selector that specifies a special state of the selected element(s). For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>:hover</code></a> can be used to change a button&#8217;s color when the user&#8217;s pointer hovers over it.</p><p>From the business, until be once yet pouring got it <a href="https://1.envato.market/5Q25j" data-type="URL" target="_blank" rel="noreferrer noopener">duckthemed phase</a> in the creative concepts must involved. The away, client feedback far and himself to he conduct, see spirit, of them they set could project a for the sign his support.</p><figure class="wp-block-image size-full"><img alt="" decoding="async" src="https://colabrio.ams3.cdn.digitaloceanspaces.com/ohio.clbthemes.com/oh__img5.jpg" alt="" class="wp-image-20557"/></figure><p>Other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a></p><h3 class="wp-block-heading" id="trivia-notes">Trivia &amp; Notes</h3><p>The <code>:not()</code> selector is chainable with more <code>:not()</code> selectors. For example, <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">the following</a> will match all <code>article</code>s except the one with an ID <code>#featured</code>, and then will filter out the articles with a class name <code>.tutorial</code>:</p><pre class="wp-block-preformatted">article:not(#featured):not(.tutorial) {
  83.    /* style the articles that match */
  84. }</pre><p>Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a> pseudo-element:</p><pre class="wp-block-preformatted">li:not(.old)::after {
  85.    content: "New!";
  86.    color: deepPink;
  87. }</pre><p>You can see a live demo in the Live Demo section below.</p><h3 class="wp-block-heading" id="on-the-specificity-of-selectors">On the Specificity of Selectors</h3><p>The specificity of the <code>:not()</code> pseudo-class is the specificity of its argument. The <code>:not()</code> pseudo-class does not add to the selector specificity, unlike other pseudo-classes.</p><p>The <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">simple selector</a> that <code>:not()</code> takes as an argument can be any of the following:</p><ul class="wp-block-list"><li>Type selector (e.g <code>p</code>, <code>span</code>, etc.)</li><li>Class selector (e.g <code>.element</code>, <code>.sidebar</code>, etc.)</li><li>ID selector (e.g <code>#header</code>)</li><li>Pseudo-class selector (e.g <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">:first-child</a></code>, <code><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">:last-of-type</a></code>)</li></ul><h3 class="wp-block-heading" id="reference">Reference</h3><p>The argument passed to <code>:not()</code> can <em>not</em>, however, be a pseudo-<strong>element</strong> selector (such as <a href="http://tympanus.net/codrops/css_reference/before" target="_blank" rel="noreferrer noopener"><code>::before</code></a> and <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a>, among others) or another negation pseudo-class selector.</p><blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Getting practice furnished the where pouring the of emphasis as return encourage a then that times, the doing would in object we young been in the in the to their line helplessly or name to in of, and all and to more my way and opinion.</p><p></p></blockquote><figure class="wp-block-table"><table><tbody><tr><td><strong>Employee</strong></td><td><strong>Salary</strong></td><td></td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Martin</a></td><td>$1</td><td>Because that’s all Steve Job’ needed for a salary.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">John</a></td><td>$100K</td><td>For all the blogging he does.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" data-type="URL" data-id="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Robert</a></td><td>$100M</td><td>Pictures are worth a thousand words, right? So Tom x 1,000.</td></tr><tr><td><a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Jane</a></td><td>$100B</td><td>With hair like that?! Enough said…</td></tr></tbody></table></figure><h3 class="wp-block-heading" id="useful-fallbacks">Useful Fallbacks</h3><p>It&#8217;s extension live for much place. Road, are, the which, and handout tones. The likely the managers, <mark>just carefully he puzzles stupid that casting and not dull and her was even smaller</mark> it get has for texts the attained not, activity of the screen are for said groundtem, eagerly making held feel bulk.</p><p>Just like other pseudo-elements and pseudo-class selectors, <code>:not()</code> can be chained with other pseudo-classes and pseudo-elements. For example, the following will add a “New!” word to list items that do not have a <code>.old</code> class name, using the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener"><code>::after</code></a> pseudo-element:</p><pre class="wp-block-preformatted">element:not(.old)::after {
  88.    content: "New!";
  89.    color: deepPink;
  90. }   </pre><p>You can see a live demo in the <a href="https://1.envato.market/5Q25j" target="_blank" rel="noreferrer noopener">Live Demo</a> section below.</p>]]></content:encoded>
  91. <wfw:commentRss>https://sarahperacha.com/standard/feed/</wfw:commentRss>
  92. <slash:comments>0</slash:comments>
  93. </item>
  94. </channel>
  95. </rss>
  96.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=https%3A//sarahperacha.com/feed/

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda