<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>animated CSS Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/animated-css/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/animated-css/</link>
	<description>Code Solution</description>
	<lastBuildDate>Fri, 24 Mar 2023 09:30:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>animated CSS Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/animated-css/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Login Form CSS and Html Example</title>
		<link>https://codeplaners.com/login-form-css-and-html-example/</link>
					<comments>https://codeplaners.com/login-form-css-and-html-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 24 Mar 2023 09:30:36 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[animated CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS and Html]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Login Form]]></category>
		<category><![CDATA[Login Form CSS and Html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1468</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you Login Form CSS and Html example. This article will give you simple example of Login Form CSS and Html example. you will Login Form CSS and Html example. In this article, we will implement a Login Form CSS and Html example. So, let’s follow few steps to &#8230; <a href="https://codeplaners.com/login-form-css-and-html-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Login Form CSS and Html Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/login-form-css-and-html-example/">Login Form CSS and Html Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you Login Form CSS and Html example. This article will give you simple example of Login Form CSS and Html example. you will Login Form CSS and Html example. In this article, we will implement a Login Form CSS and Html example. </p>
<p>So, let’s follow few steps to create example of Login Form CSS and Html example.</p>
<h3 class="step_code">Example</h3>
<p><strong>index.html</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;Login Form CSS and Html example - codeplaners&lt;/title&gt;
&lt;style&gt;
    html {
  height: 100%;
}
body {
  margin:0;
  padding:0;
  font-family: sans-serif;
  background: linear-gradient(#141e30, #243b55);
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,.5);
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #fff;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  top:0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #f49003;
  font-size: 12px;
}

.login-box form a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #f49003;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box a:hover {
  background: #f49003;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #f49003,
              0 0 25px #f49003,
              0 0 50px #f49003,
              0 0 100px #f49003;
}

.login-box a span {
  position: absolute;
  display: block;
}

.login-box a span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f49003);
  animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

.login-box a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #f49003);
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

.login-box a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #f49003);
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

.login-box a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #f49003);
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div class=&quot;login-box&quot;&gt;
  &lt;h2&gt;Login&lt;/h2&gt;
  &lt;form&gt;
    &lt;div class=&quot;user-box&quot;&gt;
      &lt;input type=&quot;text&quot; name=&quot;&quot; required=&quot;&quot;&gt;
      &lt;label&gt;Username&lt;/label&gt;
    &lt;/div&gt;
    &lt;div class=&quot;user-box&quot;&gt;
      &lt;input type=&quot;password&quot; name=&quot;&quot; required=&quot;&quot;&gt;
      &lt;label&gt;Password&lt;/label&gt;
    &lt;/div&gt;
    &lt;a href=&quot;#&quot;&gt;
      &lt;span&gt;&lt;/span&gt;
      &lt;span&gt;&lt;/span&gt;
      &lt;span&gt;&lt;/span&gt;
      &lt;span&gt;&lt;/span&gt;
      Submit
    &lt;/a&gt;
  &lt;/form&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/login-form-css-and-html-example/">Login Form CSS and Html Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/login-form-css-and-html-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Create Animated Background using CSS</title>
		<link>https://codeplaners.com/how-to-create-animated-background-using-css/</link>
					<comments>https://codeplaners.com/how-to-create-animated-background-using-css/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 26 May 2021 00:13:41 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[animated CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=842</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you how to create animated background using CSS. This article will give you simple example of how to create animated background using CSS. you will learn how to create animated background using CSS. So let&#8217;s follow few step to create example of how to create animated background using &#8230; <a href="https://codeplaners.com/how-to-create-animated-background-using-css/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Create Animated Background using CSS"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-animated-background-using-css/">How To Create Animated Background using CSS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello Dev,</p>
<p>Today, i we will show you how to create animated background using CSS. This article will give you simple example of how to create animated background using CSS. you will learn how to create animated background using CSS. So let&#8217;s follow few step to create example of how to create animated background using CSS.</p>
<p><strong>Example</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
  
&lt;head&gt;
    &lt;title&gt;How To Create Animated Background using CSS&lt;/title&gt;
&lt;style&gt;
body {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(155deg, #4caf50, #e91e63, #ff9800, #00bcd4);
	background-size: 450%;
	animation: bganimation 15s infinite;
}
.container {
	height: 100vh;
	width: 1170px;
	margin:0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
h3 {
color: #fff;
font-size: 44px;
}

@keyframes bganimation {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}
&lt;/style&gt;
&lt;/head&gt;
  
&lt;body&gt;
    &lt;div class=&quot;container&quot;&gt;
       &lt;h3&gt;How To Create Animated Background using CSS&lt;/h3&gt;
    &lt;/div&gt;
&lt;/body&gt;
  
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-animated-background-using-css/">How To Create Animated Background using CSS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-animated-background-using-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
