<?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: mohsenet</title>
    <description>The latest articles on DEV Community by mohsenet (@mohsenet).</description>
    <link>https://dev.to/mohsenet</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%2F774703%2F1e56a174-aeec-4d76-a0f6-9c98ff4a1e32.jpeg</url>
      <title>DEV Community: mohsenet</title>
      <link>https://dev.to/mohsenet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohsenet"/>
    <language>en</language>
    <item>
      <title>Simple loader with CSS and HTML</title>
      <dc:creator>mohsenet</dc:creator>
      <pubDate>Wed, 15 Dec 2021 06:23:19 +0000</pubDate>
      <link>https://dev.to/mohsenet/simple-loader-with-css-and-html-3km4</link>
      <guid>https://dev.to/mohsenet/simple-loader-with-css-and-html-3km4</guid>
      <description>&lt;p&gt;Here is a simple loader.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;HTML&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;div class="center"&amp;gt;
  &amp;lt;div class="loader1"&amp;gt;.&amp;lt;/div&amp;gt;
  &amp;lt;div class="loader2"&amp;gt;.&amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;CSS&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;.center {
  display: grid;
  place-items: center;
  height: 90vh;
  font-size: 7rem;
  color: #acf;
}

.loader1 {
  position: absolute;
  animation: motion 1s linear infinite;
}

.loader2 {
  position: absolute;
  animation: motion 1.5s linear infinite;
}

@keyframes motion{
  0%   {transform: rotate(0deg)}
  100% {transform: rotate(360deg)}
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;also you can see at &lt;a href="https://codepen.io/mohsenet/pen/xxXgvEY"&gt;codepen&lt;/a&gt;&lt;br&gt;
Thank you your attention&lt;/p&gt;

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