<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Altug Gurkaynak</title>
    <description>The latest articles on DEV Community by Altug Gurkaynak (@altugdesign).</description>
    <link>https://dev.to/altugdesign</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F946253%2F91a4a5b6-944d-47ac-b887-3afe7202e5a4.png</url>
      <title>DEV Community: Altug Gurkaynak</title>
      <link>https://dev.to/altugdesign</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/altugdesign"/>
    <language>en</language>
    <item>
      <title>WordPress Pro Tip: Open The Single Search Result Automatically</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Fri, 06 Jan 2023 06:00:00 +0000</pubDate>
      <link>https://dev.to/altugdesign/wordpress-pro-tip-open-the-single-search-result-automatically-4p1h</link>
      <guid>https://dev.to/altugdesign/wordpress-pro-tip-open-the-single-search-result-automatically-4p1h</guid>
      <description>&lt;p&gt;From the perspective of User Experience Design (or UXD in short) we have to put ourselves in the user’s shoes. While doing that, as a designer, I clear my mind from the experience and thoughts I had while creating the product to be have first hand users mind set.&lt;/p&gt;

&lt;p&gt;👉 When I did so, &lt;u&gt;&lt;em&gt;I found out that displaying a single item on a search result is pointless&lt;/em&gt;&lt;/u&gt;. &lt;br&gt;
👉 If there is only 1 result on a search, why bother or lose time viewing it?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://dev.to/altugdesign/wordpress-tip-limiting-the-search-to-a-single-category-2mmj"&gt;On the previous WordPress tip&lt;/a&gt;, we talked about limiting the search categories. This time we are taking one more step forward to check if there is only 1 post.&lt;/p&gt;
&lt;h3&gt;
  
  
  It’s time to write our code
&lt;/h3&gt;

&lt;p&gt;We create a new function in functions.php :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="c1"&gt;// IF THE SEARCH HAS ONE RESULT, AUTOMATICALLY OPEN THAT RESULT&lt;/span&gt;
&lt;span class="nf"&gt;add_action&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s1"&gt;'template_redirect'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'one_match_redirect'&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="n"&gt;one_match_redirect&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nf"&gt;is_search&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="k"&gt;global&lt;/span&gt; &lt;span class="nv"&gt;$wp_query&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
        &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;$wp_query&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;post_count&lt;/span&gt; &lt;span class="o"&gt;==&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
            &lt;span class="nf"&gt;wp_redirect&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nf"&gt;get_permalink&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nv"&gt;$wp_query&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;posts&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;'0'&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="no"&gt;ID&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;);&lt;/span&gt;
        &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is everything. From now on, if your search ends with a single result query, your WordPress site will automatically open that single result.&lt;/p&gt;

&lt;p&gt;For detailed information about the &lt;code&gt;wp_redirect&lt;/code&gt; we use here: &lt;a href="https://developer.wordpress.org/reference/hooks/wp_redirect/"&gt;developer.wordpress.org/reference/hooks/wp_redirect&lt;/a&gt;&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>php</category>
      <category>ux</category>
      <category>search</category>
    </item>
    <item>
      <title>WordPress Tip: Limiting the Search to a Single Category</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Thu, 05 Jan 2023 06:00:00 +0000</pubDate>
      <link>https://dev.to/altugdesign/wordpress-tip-limiting-the-search-to-a-single-category-2mmj</link>
      <guid>https://dev.to/altugdesign/wordpress-tip-limiting-the-search-to-a-single-category-2mmj</guid>
      <description>&lt;p&gt;If you are using more than one Category in your posts of your WordPress-based project, and you want your search feature to work &lt;u&gt;&lt;em&gt;for only one of them&lt;/em&gt;&lt;/u&gt;, this method is for you.&lt;/p&gt;

&lt;p&gt;First of all, it is useful to remind you: For simple operations you can do without using a plugin, please do not install plugins on your site! There are 2 main reasons for this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;u&gt;&lt;em&gt;&lt;strong&gt;Security:&lt;/strong&gt; Plugins are at the discretion of the person who wrote that one.&lt;/em&gt;&lt;/u&gt; Even if there is no security vulnerability at the time you install it, one may appear in the code of that add-on at a later date and you will not even be aware of it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Speed:&lt;/strong&gt; Plugins consume resources. In addition, since each of them carries out several separate processes, it will have &lt;u&gt;&lt;em&gt;negative effects on the opening speed&lt;/em&gt;&lt;/u&gt; of your page.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;So, what are we going to do?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you know what you’re doing, interfere with your site’s codes by yourself . In our example here, we will solve our problem by adding a simple function to the &lt;code&gt;functions.php&lt;/code&gt; file of WordPress.&lt;/p&gt;

&lt;h3&gt;
  
  
  Case Study: &lt;a href="https://marinalar.com" rel="noopener noreferrer"&gt;Marinalar.com&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;While preparing Marinalar.com for publication, we had a problem with searching. We had 2 types of content defined as “posts”: &lt;em&gt;News&lt;/em&gt; and &lt;em&gt;Marinas&lt;/em&gt;. But our user experience research revealed that the search feature doesn’t necessarily cover the news, and is often distracting. So the search result should have listed only Marinas.&lt;/p&gt;

&lt;p&gt;At the end of our research, we discovered that we could solve this problem from the code, not from the frontend.&lt;/p&gt;

&lt;p&gt;Let me tell you how you can easily handle this process in 2 steps.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In Which Category the search will be done?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The first thing we need to know is to learn the ID of the category you want to search. For this, we enter the &lt;code&gt;Posts&lt;/code&gt; &amp;gt; &lt;code&gt;Categories&lt;/code&gt; option from the left menu of your wordpress site.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5juk1s6dhdj12ioikcra.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5juk1s6dhdj12ioikcra.png" alt="Post Categories"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then, we move the mouse over the category whose ID we want to learn and look for the &lt;code&gt;tag_ID=&lt;/code&gt; part in the link address. You can find this out by right-clicking on the link and choosing “inspect element” or by looking at what the link address.&lt;/p&gt;

&lt;p&gt;In our example it says &lt;code&gt;tag_ID=63&lt;/code&gt;. In other words, the ID of the Marinas category on our WordPress site is 63. We will also use this number in our code.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojm871pfhs0su7e46yev.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojm871pfhs0su7e46yev.png" alt="How to find out Category ID"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  It’s time to write our code
&lt;/h2&gt;

&lt;p&gt;We write a new function in &lt;code&gt;functions.php&lt;/code&gt; :&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight php"&gt;&lt;code&gt;&lt;span class="c1"&gt;// SEARCH IN SINGLE CATEGORY&lt;/span&gt;
&lt;span class="k"&gt;function&lt;/span&gt; &lt;span class="n"&gt;single_category_search&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nv"&gt;$query&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nf"&gt;is_admin&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;||&lt;/span&gt; &lt;span class="o"&gt;!&lt;/span&gt; &lt;span class="nv"&gt;$query&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;is_main_query&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

  &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="nv"&gt;$query&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="n"&gt;is_search&lt;/span&gt; &lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nv"&gt;$query&lt;/span&gt;&lt;span class="o"&gt;-&amp;gt;&lt;/span&gt;&lt;span class="nf"&gt;set&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="s1"&gt;'cat'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'63'&lt;/span&gt; &lt;span class="p"&gt;);&lt;/span&gt; &lt;span class="c1"&gt;// Search within this ID&lt;/span&gt;
  &lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nf"&gt;add_action&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt; &lt;span class="s1"&gt;'pre_get_posts'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s1"&gt;'single_category_search'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That is all.&lt;/p&gt;

&lt;p&gt;Now, all the searches you will make on your WordPress site will be in the category you specify and the results will only be presented within this set.&lt;/p&gt;

&lt;p&gt;For detailed information about the &lt;code&gt;pre_get_posts&lt;/code&gt; we use here: &lt;a href="https://developer.wordpress.org/reference/hooks/pre_get_posts/" rel="noopener noreferrer"&gt;developer.wordpress.org/reference/hooks/pre_get_posts/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>php</category>
      <category>wordpress</category>
      <category>ux</category>
    </item>
    <item>
      <title>Gradient Texts with Tailwind CSS</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Wed, 04 Jan 2023 14:44:55 +0000</pubDate>
      <link>https://dev.to/altugdesign/gradient-texts-with-tailwind-css-459a</link>
      <guid>https://dev.to/altugdesign/gradient-texts-with-tailwind-css-459a</guid>
      <description>&lt;p&gt;Gradients are great. Right?&lt;br&gt;
And when it comes to Tailwind CSS it's also great. Right!&lt;/p&gt;

&lt;p&gt;So lets make a nice gradient header with Tailwind 🎯&lt;/p&gt;

&lt;p&gt;At the example below, I made a simple &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; with Tailwind codes only.&lt;/p&gt;

&lt;p&gt;Please open the pen in full mode or &lt;a href="https://codepen.io/altug/pen/KKBgQyX?editors=1000"&gt;just click here&lt;/a&gt; to see it larger (for desktops).&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/altug/embed/KKBgQyX?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;h3&gt;
  
  
  Lets Breat It Down
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;max-w-screen-md&lt;/strong&gt; 👉 width of the h1 &lt;br&gt;
&lt;strong&gt;mt-8&lt;/strong&gt; 👉 margin-top: 2rem &lt;br&gt;
&lt;strong&gt;mx-auto&lt;/strong&gt; 👉 margin-left: auto; margin-right: auto to center the h1 &lt;br&gt;
&lt;strong&gt;text-center&lt;/strong&gt; 👉 text-align: center &lt;br&gt;
&lt;strong&gt;text-7xl&lt;/strong&gt;  👉 font-size: 4.5rem &lt;br&gt;
&lt;strong&gt;font-bold&lt;/strong&gt;  👉  font-weight: bold &lt;br&gt;
&lt;strong&gt;bg-clip-text&lt;/strong&gt;  👉  crop the element’s background to match the shape of the text&lt;br&gt;
&lt;strong&gt;text-transparent&lt;/strong&gt; 👉 making text transparent to clip-text work on gradient&lt;br&gt;
&lt;strong&gt;bg-gradient-to-r&lt;/strong&gt;  👉  the gradient from left to right &lt;br&gt;
&lt;strong&gt;from-orange-600&lt;/strong&gt;   👉  starting color &lt;br&gt;
&lt;strong&gt;to-purple-600&lt;/strong&gt;   👉  end color &lt;/p&gt;

&lt;p&gt;I 💙 Tailwind CSS&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>tailwindcss</category>
      <category>ux</category>
    </item>
    <item>
      <title>A Simpler and Better Way of Hiding Elements with HTML</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Wed, 04 Jan 2023 07:03:29 +0000</pubDate>
      <link>https://dev.to/altugdesign/a-simpler-and-better-way-of-hiding-elements-with-html-2ima</link>
      <guid>https://dev.to/altugdesign/a-simpler-and-better-way-of-hiding-elements-with-html-2ima</guid>
      <description>&lt;p&gt;Hiding an element in web pages is sometimes necessary or we use this for an instant (or temporary) fix. Lets examine the most common types of element hiding in web pages.&lt;/p&gt;

&lt;p&gt;Our first two are going be CSS attributes: &lt;code&gt;display: none&lt;/code&gt; and &lt;code&gt;visibility: hidden&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Even though most of us already use these, let’s sum up for to be clear.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.hideThis {display: none}

.doNotShow {visibility: hidden}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Any element which has the &lt;code&gt;hideThis&lt;/code&gt; class (display:none) will be hidden and will not take up any space.&lt;/p&gt;

&lt;p&gt;Elements which has the &lt;code&gt;doNotShow&lt;/code&gt; class (visibility: hidden) will also be hidden from the eye &lt;strong&gt;but&lt;/strong&gt; they will take up space for their content. If an element (lets say a paragraph), takes 2 lines of space in height, then there will a blank space which has a height of 2 paragraphs if &lt;code&gt;visibility: hidden&lt;/code&gt; is applied.&lt;/p&gt;

&lt;h2&gt;
  
  
  How about using an HTML attribute?
&lt;/h2&gt;

&lt;p&gt;Apart from the CSS hiding, if it is suitable, we can also use a simpler method, such as &lt;strong&gt;hidden&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;p hidden&amp;gt;This paragraph is hidden and not does 
not take up space. By HTML boolean attribute&amp;lt;/p&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Looks very simple right? &lt;strong&gt;hidden&lt;/strong&gt; is a boolean HTML attribute. That means, if present, it specifies that an element is not yet, or no longer, relevant and browsers will not display that element. Works the same way of its HTML twin: &lt;code&gt;display: none&lt;/code&gt;&lt;/p&gt;

</description>
      <category>braziliandevs</category>
      <category>community</category>
    </item>
    <item>
      <title>Better Internal Links #</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Tue, 03 Jan 2023 13:42:22 +0000</pubDate>
      <link>https://dev.to/altugdesign/better-internal-links--3ac9</link>
      <guid>https://dev.to/altugdesign/better-internal-links--3ac9</guid>
      <description>&lt;p&gt;&lt;strong&gt;Internal links are a great way to divide the parts of your article.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;But they can be better!&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;If you make the internal titles (h2, h3, h4) look different with CSS (see the example below) that makes it possible to share the link. Also this lets the user FOCUSED to that part of the article 🎯 &lt;/p&gt;

&lt;h2&gt;
  
  
  Lets See How
&lt;/h2&gt;

&lt;p&gt;When the internal link is active, make it look featured or different.&lt;/p&gt;

&lt;p&gt;So, if you send a link like &lt;code&gt;https://abc.com/page#inner&lt;/code&gt; , your title will look different than the other titles (or internal links).&lt;/p&gt;

&lt;p&gt;Also, if you use a link image and make it clickable, your readers can/will make the title active and share that internal link by themself. So emphasise it if you can.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lets see it in action with the code:
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://codepen.io/altug/pen/VwdwKpw"&gt;https://codepen.io/altug/pen/VwdwKpw&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/altug/embed/VwdwKpw?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Please share your thoughts and/or development suggestions ✌&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>codepen</category>
    </item>
    <item>
      <title>Input Fields with Floating Label (CSS Only)</title>
      <dc:creator>Altug Gurkaynak</dc:creator>
      <pubDate>Mon, 17 Oct 2022 01:40:22 +0000</pubDate>
      <link>https://dev.to/altugdesign/input-fields-with-floating-label-css-only-5ehj</link>
      <guid>https://dev.to/altugdesign/input-fields-with-floating-label-css-only-5ehj</guid>
      <description>&lt;p&gt;&lt;strong&gt;I tried to create a better input experience.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Before clicking, the placeholders are set.&lt;/li&gt;
&lt;li&gt;On click, the placeholder turns to a floating label.&lt;/li&gt;
&lt;li&gt;If the area is filled, border disappears. I used &lt;code&gt;:not(:placeholder-shown)&lt;/code&gt; for this.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Nice for a11y and UX (hopefully)&lt;/p&gt;

&lt;p&gt;&lt;iframe height="600" src="https://codepen.io/altug/embed/xxjBNze?height=600&amp;amp;default-tab=result&amp;amp;embed-version=2"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Please share your thoughts: &lt;a href="https://altug.design"&gt;altug.design&lt;/a&gt;&lt;/p&gt;

</description>
      <category>codepen</category>
      <category>css</category>
      <category>html</category>
    </item>
  </channel>
</rss>
