<?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>css Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/css/</link>
	<description>Code Solution</description>
	<lastBuildDate>Wed, 01 Jan 2025 06:37:13 +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>css Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/css/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Attribute Types of ol and ul</title>
		<link>https://codeplaners.com/attribute-types-of-ol-and-ul/</link>
					<comments>https://codeplaners.com/attribute-types-of-ol-and-ul/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 29 Dec 2024 04:47:04 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[Attribute Types of ol and ul]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[CSS and Html]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1692</guid>

					<description><![CDATA[<p>This post was last updated on January 1st, 2025 at 06:37 amHi Dev, Today in this article we will understand how many attribute types of ol and ul are there in HTML and how to use them. Let&#8217;s discuss the attribute types of ol and ul. So let’s follow few step to create example of &#8230; <a href="https://codeplaners.com/attribute-types-of-ol-and-ul/" class="more-link">Continue reading<span class="screen-reader-text"> "Attribute Types of ol and ul"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/attribute-types-of-ol-and-ul/">Attribute Types of ol and ul</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="last-modified">This post was last updated on January 1st, 2025 at 06:37 am</p><p>Hi Dev,</p>
<p>Today in this article we will understand how many attribute types of ol and ul are there in HTML and how to use them. Let&#8217;s discuss the attribute types of ol and ul.</p>
<p>So let’s follow few step to create example of attribute types of ol and ul.</p>
<h3 class="step_code">ul type Attribute</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;ul type=&quot;disc&quot;&gt;
&lt;ul type=&quot;circle&quot;&gt;
&lt;ul type=&quot;square&quot;&gt;
</pre>
<p><strong>Example ul type attribute: </strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;

&lt;head&gt;
   &lt;title&gt;HTML ul type attribute&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
   &lt;h1&gt;codeplaners&lt;/h1&gt;

   &lt;h2&gt;HTML ul type attribute&lt;/h2&gt;

   &lt;ul type=&quot;disc&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ul&gt;

   &lt;ul type=&quot;circle&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ul&gt;

   &lt;ul type=&quot;square&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ul&gt;
&lt;/body&gt;

&lt;/html&gt;  
</pre>
<p><strong>Preview:-</strong><br />
<img decoding="async" style="border: 3px solid #ff5722;" alt="HTML ul type attribute" src="https://codeplaners.com/wp-content/uploads/2023/12/HTML-ul-type-attribute.jpg"></p>
<h3 class="step_code">ol type Attribute</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;ol type=&quot;1&quot;&gt;
&lt;ol type=&quot;a&quot;&gt;
&lt;ol type=&quot;A&quot;&gt;
&lt;ol type=&quot;i&quot;&gt;
&lt;ol type=&quot;I&quot;&gt;
</pre>
<p><strong>Example ol type attribute: </strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;

&lt;head&gt;
   &lt;title&gt;HTML ol type attribute&lt;/title&gt;
&lt;/head&gt;

&lt;body&gt;
   &lt;h1&gt;codeplaners&lt;/h1&gt;

   &lt;h2&gt;HTML ol type attribute&lt;/h2&gt;

   &lt;ol type=&quot;1&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ol&gt;

   &lt;ol type=&quot;a&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ol&gt;

   &lt;ol type=&quot;A&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ol&gt;
&lt;ol type=&quot;i&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ol&gt;
&lt;ol type=&quot;I&quot;&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
      &lt;li&gt;Lorem Text&lt;/li&gt;
   &lt;/ol&gt;


&lt;/body&gt;

&lt;/html&gt;  
</pre>
<p><strong>Preview:-</strong><br />
<img decoding="async" style="border: 3px solid #ff5722;" alt="HTML ul type attribute" src="https://codeplaners.com/wp-content/uploads/2023/12/HTML-ol-type-attribute.jpg"></p>
<p><strong>I hope it will assist you…</strong></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/attribute-types-of-ol-and-ul/">Attribute Types of ol and ul</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/attribute-types-of-ol-and-ul/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Social Media Icon With pop-up Effect Example</title>
		<link>https://codeplaners.com/social-media-icon-with-pop-up-effect-example/</link>
					<comments>https://codeplaners.com/social-media-icon-with-pop-up-effect-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Mar 2023 08:53:15 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[pop-up effect]]></category>
		<category><![CDATA[social media]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1475</guid>

					<description><![CDATA[<p>This post was last updated on May 13th, 2023 at 01:16 amHi Dev, Today, i will show you social media icon with pop-up effect example. This article will give you simple example of social media icon with pop-up effect example. you will social media icon with pop-up effect example. In this article, we will implement &#8230; <a href="https://codeplaners.com/social-media-icon-with-pop-up-effect-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Social Media Icon With pop-up Effect Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/social-media-icon-with-pop-up-effect-example/">Social Media Icon With pop-up Effect Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="last-modified">This post was last updated on May 13th, 2023 at 01:16 am</p><p>Hi Dev,</p>
<p>Today, i will show you social media icon with pop-up effect example. This article will give you simple example of social media icon with pop-up effect example. you will social media icon with pop-up effect example. In this article, we will implement a social media icon with pop-up effect example. </p>
<p>So, let’s follow few steps to create example of social media icon with pop-up effect 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;social media icon with pop-up effect example - codeplaners&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css&quot;&gt;
    &lt;style&gt;
        /*
    Auther: Abdelrhman Said
*/

@import url(&quot;https://fonts.googleapis.com/css2?family=Poppins&amp;display=swap&quot;);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  display: grid;
  height: 100%;
  width: 100%;
  font-family: &quot;Poppins&quot;, sans-serif;
  place-items: center;
  background: linear-gradient(315deg, #ffffff, #d7e1ec);
}

.wrapper {
  display: inline-flex;
  list-style: none;
}

.wrapper .icon {
  position: relative;
  background: #ffffff;
  border-radius: 50%;
  padding: 15px;
  margin: 10px;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
  position: absolute;
  top: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
  position: absolute;
  content: &quot;&quot;;
  height: 8px;
  width: 8px;
  background: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background: #1877f2;
  color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
  background: #1da1f2;
  color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
  background: #e4405f;
  color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
  background: #cd201f;
  color: #ffffff;
}

    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
   


    &lt;ul class=&quot;wrapper&quot;&gt;
        &lt;li class=&quot;icon facebook&quot;&gt;
          &lt;span class=&quot;tooltip&quot;&gt;Facebook&lt;/span&gt;
          &lt;span&gt;&lt;i class=&quot;fa fa-facebook&quot;&gt;&lt;/i&gt;&lt;/span&gt;
        &lt;/li&gt;
        &lt;li class=&quot;icon twitter&quot;&gt;
          &lt;span class=&quot;tooltip&quot;&gt;Twitter&lt;/span&gt;
          &lt;span&gt;&lt;i class=&quot;fa fa-twitter&quot;&gt;&lt;/i&gt;&lt;/span&gt;
        &lt;/li&gt;
        &lt;li class=&quot;icon instagram&quot;&gt;
          &lt;span class=&quot;tooltip&quot;&gt;Instagram&lt;/span&gt;
          &lt;span&gt;&lt;i class=&quot;fa fa-instagram&quot;&gt;&lt;/i&gt;&lt;/span&gt;
        &lt;/li&gt;
        &lt;li class=&quot;icon github&quot;&gt;
          &lt;span class=&quot;tooltip&quot;&gt;Github&lt;/span&gt;
          &lt;span&gt;&lt;i class=&quot;fa fa-github&quot;&gt;&lt;/i&gt;&lt;/span&gt;
        &lt;/li&gt;
        &lt;li class=&quot;icon youtube&quot;&gt;
          &lt;span class=&quot;tooltip&quot;&gt;Youtube&lt;/span&gt;
          &lt;span&gt;&lt;i class=&quot;fa fa-youtube&quot;&gt;&lt;/i&gt;&lt;/span&gt;
        &lt;/li&gt;
      &lt;/ul&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/social-media-icon-with-pop-up-effect-example/">Social Media Icon With pop-up Effect Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/social-media-icon-with-pop-up-effect-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<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>Clock In Javascript Example</title>
		<link>https://codeplaners.com/clock-in-javascript-example/</link>
					<comments>https://codeplaners.com/clock-in-javascript-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 24 Mar 2023 09:17:15 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[clock]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1465</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you Clock In Javascript Example. This article will give you simple example of Clock In Javascript Example. you will Clock In Javascript Example. In this article, we will implement a Clock In Javascript Example. So, let’s follow few steps to create example of Clock In Javascript Example. Example &#8230; <a href="https://codeplaners.com/clock-in-javascript-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Clock In Javascript Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/clock-in-javascript-example/">Clock In Javascript 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 Clock In Javascript Example. This article will give you simple example of Clock In Javascript Example. you will Clock In Javascript Example. In this article, we will implement a Clock In Javascript Example. </p>
<p>So, let’s follow few steps to create example of Clock In Javascript 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;title&gt;Clock In Javascript Example - codeplaners&lt;/title&gt;
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, viewport-fit=cover&quot;&gt;
  &lt;link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=DM+Sans&amp;amp;display=swap'&gt;
 &lt;style&gt;
    * {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	--hue: 223;
	--bg: hsl(var(--hue),90%,90%);
	--fg: hsl(var(--hue),10%,10%);
	--primary: hsl(var(--hue),90%,55%);
	--trans-dur: 0.3s;
	font-size: calc(16px + (20 - 16) * (100vw - 320px) / (1280 - 320));
}
body {
	background-color: var(--bg);
	color: var(--fg);
	font: 1em/1.5 &quot;DM Sans&quot;, sans-serif;
	height: 100vh;
	display: grid;
	place-items: center;
	transition:
		background-color var(--trans-dur),
		color var(--trans-dur);
}

.clock {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
}
.clock__block {
	background-color: hsl(var(--hue),10%,90%);
	border-radius: 0.5rem;
	box-shadow: 0 1rem 2rem hsla(var(--hue),90%,50%,0.3);
	font-size: 3em;
	line-height: 2;
	margin: 0.75rem;
	overflow: hidden;
	text-align: center;
	width: 6rem;
	height: 6rem;
	transition:
		background-color var(--trans-dur),
		box-shadow var(--trans-dur);
}
.clock__block--small {
	border-radius: 0.25rem;
	box-shadow: 0 0.5rem 2rem hsla(var(--hue),90%,50%,0.3);
	font-size: 1em;
	line-height: 3;
	width: 3rem;
	height: 3rem;
}
.clock__colon {
	display: none;
	font-size: 2em;
	opacity: 0.5;
	position: relative;
}
.clock__colon:before,
.clock__colon:after {
	background-color: currentColor;
	border-radius: 50%;
	content: &quot;&quot;;
	display: block;
	position: absolute;
	top: -0.05em;
	left: -0.05em;
	width: 0.1em;
	height: 0.1em;
	transition: background-color var(--trans-dur);
}
.clock__colon:before {
	transform: translateY(-200%);
}
.clock__colon:after {
	transform: translateY(200%);	
}
.clock__digit-group {
	display: flex;
	flex-direction: column-reverse;
}
.clock__digits {
	width: 100%;
	height: 100%;
}
.clock__block--bounce {
	animation: bounce 0.75s; 
}
.clock__block--bounce .clock__digit-group {
	animation: roll 0.75s ease-in-out forwards; 
	transform: translateY(-50%);
}
.clock__block--delay1,
.clock__block--delay1 .clock__digit-group {
	animation-delay: 0.1s;
}
.clock__block--delay2,
.clock__block--delay2 .clock__digit-group {
	animation-delay: 0.2s;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue),10%,10%);
		--fg: hsl(var(--hue),10%,90%);
	}
	.clock__block {
		background-color: hsl(var(--hue),90%,40%);
		box-shadow: 0 1rem 2rem hsla(var(--hue),90%,60%,0.4);
	}
	.clock__block--small {
		box-shadow: 0 0.5rem 2rem hsla(var(--hue),90%,60%,0.4);
	}
}

/* Beyond mobile */
@media (min-width: 768px) {
	.clock {
		flex-direction: row;
	}
	.clock__colon {
		display: inherit;
	}
}

/* Animations */
@keyframes bounce {
	from,
	to {
		animation-timing-function: ease-in;
		transform: translateY(0);
	}
	50% {
		animation-timing-function: ease-out;
		transform: translateY(15%);
	}
}
@keyframes roll {
	from {
		transform: translateY(-50%);
	}
	to {
		transform: translateY(0);
	}
}
 &lt;/style&gt;

&lt;/head&gt;
&lt;body&gt;
&lt;!-- partial:index.partial.html --&gt;
&lt;div class=&quot;clock&quot; aria-label=&quot;00:00:00 AM&quot;&gt;
	&lt;div class=&quot;clock__block clock__block--delay2&quot; aria-hidden=&quot;true&quot; data-time-group&gt;
		&lt;div class=&quot;clock__digit-group&quot;&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;a&quot;&gt;00&lt;/div&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;b&quot;&gt;00&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class=&quot;clock__colon&quot;&gt;&lt;/div&gt;
	&lt;div class=&quot;clock__block clock__block--delay1&quot; aria-hidden=&quot;true&quot; data-time-group&gt;
		&lt;div class=&quot;clock__digit-group&quot;&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;a&quot;&gt;00&lt;/div&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;b&quot;&gt;00&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class=&quot;clock__colon&quot;&gt;&lt;/div&gt;
	&lt;div class=&quot;clock__block&quot; aria-hidden=&quot;true&quot; data-time-group&gt;
		&lt;div class=&quot;clock__digit-group&quot;&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;a&quot;&gt;00&lt;/div&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;b&quot;&gt;00&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;div class=&quot;clock__block clock__block--delay2 clock__block--small&quot; aria-hidden=&quot;true&quot; data-time-group&gt;
		&lt;div class=&quot;clock__digit-group&quot;&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;a&quot;&gt;PM&lt;/div&gt;
			&lt;div class=&quot;clock__digits&quot; data-time=&quot;b&quot;&gt;AM&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;!-- partial --&gt;
 &lt;script&gt;
    window.addEventListener(&quot;DOMContentLoaded&quot;,() =&gt; {
	const clock = new BouncyBlockClock(&quot;.clock&quot;);
});

class BouncyBlockClock {
	constructor(qs) {
		this.el = document.querySelector(qs);
		this.time = { a: &#x5B;], b: &#x5B;] };
		this.rollClass = &quot;clock__block--bounce&quot;;
		this.digitsTimeout = null;
		this.rollTimeout = null;
		this.mod = 0 * 60 * 1000;

		this.loop();
	}
	animateDigits() {
		const groups = this.el.querySelectorAll(&quot;&#x5B;data-time-group]&quot;);

		Array.from(groups).forEach((group,i) =&gt; {
			const { a, b } = this.time;

			if (a&#x5B;i] !== b&#x5B;i]) group.classList.add(this.rollClass);
		});

		clearTimeout(this.rollTimeout);
		this.rollTimeout = setTimeout(this.removeAnimations.bind(this),900);
	}
	displayTime() {
		// screen reader time
		const timeDigits = &#x5B;...this.time.b];
		const ap = timeDigits.pop();

		this.el.ariaLabel = `${timeDigits.join(&quot;:&quot;)} ${ap}`;

		// displayed time
		Object.keys(this.time).forEach(letter =&gt; {
			const letterEls = this.el.querySelectorAll(`&#x5B;data-time=&quot;${letter}&quot;]`);

			Array.from(letterEls).forEach((el,i) =&gt; {
				el.textContent = this.time&#x5B;letter]&#x5B;i];
			});
		});
	}
	loop() {
		this.updateTime();
		this.displayTime();
		this.animateDigits();
		this.tick();
	}
	removeAnimations() {
		const groups = this.el.querySelectorAll(&quot;&#x5B;data-time-group]&quot;);
	
		Array.from(groups).forEach(group =&gt; {
			group.classList.remove(this.rollClass);
		});
	}
	tick() {
		clearTimeout(this.digitsTimeout);
		this.digitsTimeout = setTimeout(this.loop.bind(this),1e3);	
	}
	updateTime() {
		const rawDate = new Date();
		const date = new Date(Math.ceil(rawDate.getTime() / 1e3) * 1e3 + this.mod);
		let h = date.getHours();
		const m = date.getMinutes();
		const s = date.getSeconds();
		const ap = h &lt; 12 ? &quot;AM&quot; : &quot;PM&quot;;

		if (h === 0) h = 12;
		if (h &gt; 12) h -= 12;

		this.time.a = &#x5B;...this.time.b];
		this.time.b = &#x5B;
			(h &lt; 10 ? `0${h}` : `${h}`),
			(m &lt; 10 ? `0${m}` : `${m}`),
			(s &lt; 10 ? `0${s}` : `${s}`),
			ap
		];

		if (!this.time.a.length) this.time.a = &#x5B;...this.time.b];
	}
}
 &lt;/script&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/clock-in-javascript-example/">Clock In Javascript Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/clock-in-javascript-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to create JavaScript Quiz Example</title>
		<link>https://codeplaners.com/how-to-create-javascript-quiz-example/</link>
					<comments>https://codeplaners.com/how-to-create-javascript-quiz-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 10 Feb 2023 03:40:06 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JavaScript Quiz]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1459</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you How to create JavaScript Quiz Example. This article will give you simple example of How to create JavaScript Quiz Example. you will How to create JavaScript Quiz Example. In this article, we will implement a How to create JavaScript Quiz Example. So, let’s follow few steps to &#8230; <a href="https://codeplaners.com/how-to-create-javascript-quiz-example/" class="more-link">Continue reading<span class="screen-reader-text"> "How to create JavaScript Quiz Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-javascript-quiz-example/">How to create JavaScript Quiz 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 How to create JavaScript Quiz Example. This article will give you simple example of How to create JavaScript Quiz Example. you will How to create JavaScript Quiz Example. In this article, we will implement a How to create JavaScript Quiz Example. </p>
<p>So, let’s follow few steps to create example of How to create JavaScript Quiz 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&gt;
&lt;head&gt;
	&lt;title&gt;Codeplaners Quiz&lt;/title&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot;&gt;

&lt;/head&gt;
&lt;body&gt;
	&lt;div class=&quot;wrapper&quot;&gt;
           &lt;div class=&quot;question&quot; id=&quot;questionBox&quot;&gt;
           	
           &lt;/div&gt;
           
           &lt;div class=&quot;options&quot;&gt;
           	  &lt;ul id=&quot;ul&quot;&gt;
           	  	  &lt;li id=&quot;op1&quot; onclick=&quot;button(this)&quot;&gt;&lt;/li&gt;
           	  	  &lt;li id=&quot;op2&quot; onclick=&quot;button(this)&quot;&gt;&lt;/li&gt;
           	  	  &lt;li id=&quot;op3&quot; onclick=&quot;button(this)&quot;&gt;&lt;/li&gt;
           	  	  &lt;li id=&quot;op4&quot; onclick=&quot;button(this)&quot;&gt;&lt;/li&gt;
           	  &lt;/ul&gt;
           &lt;/div&gt;
           &lt;div class=&quot;score&quot;&gt;
           	   &lt;div class=&quot;next&quot;&gt;
           	   	  &lt;button type=&quot;button&quot; onclick=&quot;next()&quot; id=&quot;button&quot;&gt;Next&lt;/button&gt;
           	   &lt;/div&gt;
           	   &lt;div class=&quot;score-card&quot;&gt;
           	   	  Score : &lt;span id=&quot;scoreCard&quot;&gt;0&lt;/span&gt;
           	   &lt;/div&gt;
               &lt;div class=&quot;back&quot;&gt;
                  &lt;button type=&quot;button&quot; onclick=&quot;back()&quot; id=&quot;button&quot;&gt;Back&lt;/button&gt;
               &lt;/div&gt;
                &lt;div class=&quot;restart&quot;&gt;
                  &lt;button type=&quot;button&quot; onclick=&quot;restart()&quot; id=&quot;button&quot;&gt;Restart&lt;/button&gt;
               &lt;/div&gt;
           &lt;/div&gt;


	&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
  function restart(){
    location.reload();
  }
&lt;/script&gt;


&lt;script type=&quot;text/javascript&quot;&gt;
     
   var ul=document.getElementById('ul');
   var btn=document.getElementById('button');
   var scoreCard=document.getElementById('scoreCard');
   var quizBox=document.getElementById('questionBox');
  var op1=document.getElementById('op1');
  var op2=document.getElementById('op2');
  var op3=document.getElementById('op3');
  var op4=document.getElementById('op4');

  

      var app={
                questions:&#x5B;
                          {q:'What does the abbreviation HTML stand for?', options:&#x5B;'Hyper Text Markup Language','High Text Markup Language','Hyper Tabular Markup Language','None of these'],answer:1},
                          {q:'Correct HTML tag for the largest heading is ?',options:&#x5B;'h4','h1','h8','h9'],answer:2},

                          {q:'How many sizes of headers are available in HTML by default?',options:&#x5B;'5','1','3','6'],answer:4},

                          {q:'What is the smallest header in HTML by default?',options:&#x5B;'h1','h6','h3','h4'],answer:2},

                          {q:'How do you select an element with id &quot;demo&quot;?', options:&#x5B;'*demo','#demo','demo','.demo'],answer:2},
                         
                          ],
                index:0,
                load:function(){
                     if(this.index&lt;=this.questions.length-1){
                        quizBox.innerHTML=this.index+1+&quot;. &quot;+this.questions&#x5B;this.index].q;      
                        op1.innerHTML=this.questions&#x5B;this.index].options&#x5B;0];
                        op2.innerHTML=this.questions&#x5B;this.index].options&#x5B;1];
                        op3.innerHTML=this.questions&#x5B;this.index].options&#x5B;2];
                        op4.innerHTML=this.questions&#x5B;this.index].options&#x5B;3];
                           this.scoreCard();
                        }
                        else{

                        quizBox.innerHTML=&quot;Quiz Over......!!!&quot;      
                        op1.style.display=&quot;none&quot;;
                        op2.style.display=&quot;none&quot;;
                        op3.style.display=&quot;none&quot;;
                        op4.style.display=&quot;none&quot;;
                        btn.style.display=&quot;none&quot;;
                        }
                },
                 next:function(){
                    this.index++;
                    this.load();
                 },

                  back:function(){
                    this.index--;
                    this.load();
                 },
                check:function(ele){
                   
                         var id=ele.id.split('');
                         
                         if(id&#x5B;id.length-1]==this.questions&#x5B;this.index].answer){
                          this.score++;
                          ele.className=&quot;correct&quot;;
                          ele.innerHTML=&quot;Correct&quot;;
                          this.scoreCard();
                         }
                         else{
                          ele.className=&quot;wrong&quot;;
                          ele.innerHTML=&quot;Wrong&quot;;
                         }
                },
                notClickAble:function(){
                       for(let i=0;i&lt;ul.children.length;i++){
                            ul.children&#x5B;i].style.pointerEvents=&quot;none&quot;;
                       }
                },

                clickAble:function(){
                       for(let i=0;i&lt;ul.children.length;i++){
                            ul.children&#x5B;i].style.pointerEvents=&quot;auto&quot;;
                            ul.children&#x5B;i].className=''

                       }
                },
                score:0,
                scoreCard:function(){
                  scoreCard.innerHTML=this.questions.length+&quot;/&quot;+this.score;
                }
 
           }


           window.onload=app.load();

           function button(ele){
                 app.check(ele);
                 app.notClickAble();
           }

         function  next(){
              app.next();
              app.clickAble();
         } 

             function  back(){
              app.back();
              app.clickAble();
         } 

&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>style.css</strong></p>
<pre class="brush: css; title: ; notranslate">
 body{
  background-color: #fff;
  margin:0;
  padding:0;
}
*{
  box-sizing: border-box;
  font-family: sans-serif;
}

.wrapper{
  height: 450px;
  width: 650px;
  background-color: white;
  margin:50px auto;
  border-radius: 8px;
  margin-top: 150px;

}

.wrapper .question{
  padding: 15px;
  background-color:#673ab7;
  border-radius: 8px;
  color:#ffffff;
  font-size:20px;
  float: left;
  width: 100%;

}
.wrapper .options{
  float: left;
  width: 100%;
}

.wrapper .options ul{
  list-style: none;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wrapper .options ul li{
  display: inline-block;
  background-color:#000;
  width: 47%;
  padding: 15px;
  border-radius:8px;
  margin-top: 25px;
  font-size: 15px;
  color:#ffffff;
  box-shadow: 0px 3px 0px grey;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.wrapper .options ul li:active{
  box-shadow: 0px 3px 0px transparent;  

}
.wrapper .options ul li.correct{
  background-color: #0fd40f;
  box-shadow: 0px 3px 0px #03a503;
}

.wrapper .options ul li.wrong{
  background-color: #e91e1e;
  box-shadow: 0px 3px 0px #cb0b0b;
}

.wrapper .score{
  float: left;
  width: 100%;
  padding:25px 0px;
}

.wrapper .score .next{
  width: 35%;
  float: right;
}
.wrapper .score .next button{
  padding: 15px 80px;
  color:white;
  background-color:#00b0ff;
  border:none;
  border-radius:8px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0px 3px 0px #00b0ff;
  outline: none;
}
.wrapper .score .next button:active{
box-shadow: 0px 3px 0px transparent;  
}



.wrapper .score .back{
  width: 35%;
  float: center;
}
.wrapper .score .back button{
  padding: 15px 80px;
  color:white;
  background-color:#00b0ff;
  border:none;
  border-radius:8px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0px 3px 0px #00b0ff;
  outline: none;
}
.wrapper .score .back button:active{
box-shadow: 0px 3px 0px transparent;  
}


.wrapper .score .restart{
  width: 1%;
  float: right;
  margin-top: 30px;
}
.wrapper .score .restart button{
  padding: 15px 64px;
  color:white;
  background-color:red;
  border:none;
  border-radius:8px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0px 3px 0px #c97a06;
  outline: none;

}
.wrapper .score .restart button:active{
box-shadow: 0px 3px 0px transparent;  
}



.wrapper .score .score-card{
  width: 30%;
  float: right;
}
.wrapper .score .score-card{
  font-size: 20px;
  color:black;
  line-height: 50px;
  text-transform: uppercase;

}
.wrapper .score .score-card span{
  background-color: #4caf50;
  padding: 5px 15px;
  border-radius: 8px;
  color:#ffffff;

}
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-javascript-quiz-example/">How to create JavaScript Quiz Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-javascript-quiz-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to auto submit the form by the select option</title>
		<link>https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/</link>
					<comments>https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 14 Jul 2022 05:15:46 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ja]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1435</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you How to auto submit the form by the select option. This article will give you simple example of How to auto submit the form by the select option. you will How to auto submit the form by the select option. In this article, we will implement a &#8230; <a href="https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/" class="more-link">Continue reading<span class="screen-reader-text"> "How to auto submit the form by the select option"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/">How to auto submit the form by the select option</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 How to auto submit the form by the select option. This article will give you simple example of How to auto submit the form by the select option. you will How to auto submit the form by the select option. In this article, we will implement a How to auto submit the form by the select option. </p>
<p>So let’s follow few step to create example of How to auto submit the form by the select option.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;form action=&quot;https://codeplaners.com/&quot; method=&quot;POST&quot;&gt;
  &lt;select name=&quot;myselect&quot; id=&quot;myselect&quot; onchange=&quot;this.form.submit()&quot;&gt;
      &lt;option value=&quot;1&quot;&gt;One&lt;/option&gt;
      &lt;option value=&quot;2&quot;&gt;Two&lt;/option&gt;
      &lt;option value=&quot;3&quot;&gt;Three&lt;/option&gt;
      &lt;option value=&quot;4&quot;&gt;Four&lt;/option&gt;
  &lt;/select&gt;
&lt;/form&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/">How to auto submit the form by the select option</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-auto-submit-the-form-by-the-select-option/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Disable Resizable Property Of Textarea Using CSS</title>
		<link>https://codeplaners.com/disable-resizable-property-of-textarea-using-css/</link>
					<comments>https://codeplaners.com/disable-resizable-property-of-textarea-using-css/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 09 Apr 2022 06:08:55 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1431</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you disable resizable property of textarea using CSS. This article will give you simple example of disable resizable property of textarea using CSS. you will disable resizable property of textarea using CSS. In this article, we will implement a disable resizable property of textarea using CSS. So let’s &#8230; <a href="https://codeplaners.com/disable-resizable-property-of-textarea-using-css/" class="more-link">Continue reading<span class="screen-reader-text"> "Disable Resizable Property Of Textarea Using CSS"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/disable-resizable-property-of-textarea-using-css/">Disable Resizable Property Of Textarea Using CSS</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 disable resizable property of textarea using CSS. This article will give you simple example of disable resizable property of textarea using CSS. you will disable resizable property of textarea using CSS. In this article, we will implement a disable resizable property of textarea using CSS. </p>
<p>So let’s follow few step to create example of disable resizable property of textarea using CSS.</p>
<h3 class="step_code">Example 1</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;title&gt;Remove Textarea Resizing&lt;/title&gt;
&lt;style&gt;
    textarea {
        resize: none;
    }
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;textarea&gt;&lt;/textarea&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/disable-resizable-property-of-textarea-using-css/">Disable Resizable Property Of Textarea Using CSS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/disable-resizable-property-of-textarea-using-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Custom Scrollbar In CSS</title>
		<link>https://codeplaners.com/how-to-custom-scrollbar-in-css/</link>
					<comments>https://codeplaners.com/how-to-custom-scrollbar-in-css/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 17 Aug 2021 05:41:48 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[custom scrollbar]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1247</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to custom scrollbar in CSS. This article will give you simple example of how to custom scrollbar in CSS. you will learn how to custom scrollbar in CSS. So let’s follow few step to create example of how to custom scrollbar in CSS. Example: body::-webkit-scrollbar { width: &#8230; <a href="https://codeplaners.com/how-to-custom-scrollbar-in-css/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Custom Scrollbar In CSS"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-custom-scrollbar-in-css/">How To Custom Scrollbar In CSS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to custom scrollbar in CSS. This article will give you simple example of how to custom scrollbar in CSS. you will learn how to custom scrollbar in CSS. So let’s follow few step to create example of how to custom scrollbar in CSS.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="How To Custom Scrollbar In CSS" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/scrollbar.png"></p>
<h3 class="step_code">Example:</h3>
<pre class="brush: css; title: ; notranslate">
body::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: orange;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: blue;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid orange;  /* creates padding around scroll thumb */
}
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-custom-scrollbar-in-css/">How To Custom Scrollbar In CSS</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-custom-scrollbar-in-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Media Queries All Devices</title>
		<link>https://codeplaners.com/responsive-media-queries-all-devices/</link>
					<comments>https://codeplaners.com/responsive-media-queries-all-devices/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sun, 30 May 2021 06:13:00 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[responsive media queries]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=908</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you responsive media queries all devices. This article will give you simple example of responsive media queries all devices. you will learn responsive media queries all devices. So let&#8217;s follow few step to create example of responsive media queries all devices. HDTV Media Queries, 1920&#215;1080 @media screen and &#8230; <a href="https://codeplaners.com/responsive-media-queries-all-devices/" class="more-link">Continue reading<span class="screen-reader-text"> "Responsive Media Queries All Devices"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/responsive-media-queries-all-devices/">Responsive Media Queries All Devices</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 responsive media queries all devices. This article will give you simple example of responsive media queries all devices. you will learn responsive media queries all devices. So let&#8217;s follow few step to create example of responsive media queries all devices.</p>
<h3>HDTV Media Queries, 1920&#215;1080</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width: 1080px) and (max-width: 1920px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>Widescreen Media Queries, 1280&#215;800</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width: 800px) and (max-width: 1280px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>iPad Landscape &#038; Portrait Media Queries, 1024&#215;768</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}
</pre>
<h3>iPad Landscape Media Queries, 1024&#215;768</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}
</pre>
<h3>iPad Portrait Media Queries, 768&#215;1024</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .

}
</pre>
<h3>Small Tablet Landscape/Portrait Media Queries, 800&#215;600</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width: 600px) and (max-width: 800px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>iPhone5/Android landscape (&#038; narrow browser) Media Queries, 568&#215;320</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width: 320px) and (max-width:568px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>iPhone4/Android landscape (&#038; narrow browser) Media Queries, 480&#215;320</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width: 320px) and (max-width:480px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>iPhone4/Android portrait Media Queries, 320</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>Smaller devices, Android Landscape  Media Queries, 320&#215;240</h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (min-width:240px) and (max-width:320px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<h3>Smaller devices, Android Portrait Media Queries, 240&#215;320 </h3>
<pre class="brush: css; title: ; notranslate">
@media screen and (max-width:240px) {
/* ADD YOUR CSS ADJUSTMENTS BELOW HERE */
. . .
}
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/responsive-media-queries-all-devices/">Responsive Media Queries All Devices</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/responsive-media-queries-all-devices/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Window Full Screen In JavaScript</title>
		<link>https://codeplaners.com/how-to-window-full-screen-in-javascript/</link>
					<comments>https://codeplaners.com/how-to-window-full-screen-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 28 May 2021 00:20:49 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=869</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you how to window full screen in javaScript. This article will give you simple example of how to window full screen in javaScript. you will learn how to window full screen in javaScript. So let&#8217;s follow few step to create example of how to window full screen in &#8230; <a href="https://codeplaners.com/how-to-window-full-screen-in-javascript/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Window Full Screen In JavaScript"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-window-full-screen-in-javascript/">How to Window Full Screen In JavaScript</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 window full screen in javaScript. This article will give you simple example of how to window full screen in javaScript. you will learn how to window full screen in javaScript. </p>
<p>So let&#8217;s follow few step to create example of how to window full screen in javaScript.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" src="https://codeplaners.com/wp-content/uploads/2021/05/fullscreen.png" alt="Window Full Screen In JavaScript" ></p>
<h3>Example</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;title&gt;How to Window Full Screen In JavaScript - codeplaners&lt;/title&gt;
&lt;head&gt;
&lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;style type=&quot;text/css&quot;&gt;
#fullscreen {
    margin: 40px auto 20px auto;
    height: 200px;
    width: 600px;
    background-color: #3f51b5;
    font-size: 20px;
    padding: 40px 0 0 0;
    text-align: center;
    box-sizing: border-box;
}
#fullscreen span {
    color: #fff;
    font-family: sans-serif;
}
#full-button {
    width: 200px;
    display: block;
    margin: 50px auto 0 auto;
    padding: 10px;
    background: #ffffff;
}
#fullscreen:-webkit-full-screen {
	width: 100%;
	height: 100%;
	background-image: -webkit-linear-gradient(30deg,#FF9800,#E91E63 30%,#FF9800);
	margin: 0;
}
#fullscreen:-moz-full-screen {
	background-image: -webkit-linear-gradient(30deg,#FF9800,#E91E63 30%,#FF9800);
	margin: 0;
}

#fullscreen:-ms-fullscreen {
	background-image: -webkit-linear-gradient(30deg,#FF9800,#E91E63 30%,#FF9800);
	margin: 0;
}
#fullscreen:fullscreen { 
	background-image: -webkit-linear-gradient(30deg,#FF9800,#E91E63 30%,#FF9800);
	margin: 0;
}

&lt;/style&gt;

&lt;/head&gt;

&lt;body&gt;
	&lt;div id=&quot;fullscreen&quot;&gt;
		&lt;span&gt;How to Window Full Screen In JavaScript - codeplaners&lt;/span&gt;
		&lt;button id=&quot;full-button&quot;&gt;Enable Full Screen&lt;/button&gt;
	&lt;/div&gt;
&lt;/body&gt;

&lt;script&gt;

/* Get into full screen */
function GoInFullscreen(fullscreen) {
	if(fullscreen.requestFullscreen)
		fullscreen.requestFullscreen();
	else if(fullscreen.mozRequestFullScreen)
		fullscreen.mozRequestFullScreen();
	else if(fullscreen.webkitRequestFullscreen)
		fullscreen.webkitRequestFullscreen();
	else if(fullscreen.msRequestFullscreen)
		fullscreen.msRequestFullscreen();
}

/* Get out of full screen */
function GoOutFullscreen() {
	if(document.exitFullscreen)
		document.exitFullscreen();
	else if(document.mozCancelFullScreen)
		document.mozCancelFullScreen();
	else if(document.webkitExitFullscreen)
		document.webkitExitFullscreen();
	else if(document.msExitFullscreen)
		document.msExitFullscreen();
}

/* Is currently in full screen or not */
function IsFullScreenCurrently() {
	var full_screen_fullscreen = document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenElement || document.msFullscreenElement || null;
	
	// If no fullscreen is in full-screen
	if(full_screen_fullscreen === null)
		return false;
	else
		return true;
}

$(&quot;#full-button&quot;).on('click', function() {
	if(IsFullScreenCurrently())
		GoOutFullscreen();
	else
		GoInFullscreen($(&quot;#fullscreen&quot;).get(0));
});

$(document).on('fullscreenchange webkitfullscreenchange mozfullscreenchange MSFullscreenChange', function() {
	if(IsFullScreenCurrently()) {
		$(&quot;#fullscreen span&quot;).text('How to Window Full Screen In JavaScript - codeplaners');
		$(&quot;#full-button&quot;).text('Disable Full Screen');
	}
	else {
		$(&quot;#fullscreen span&quot;).text('How to Window Full Screen In JavaScript - codeplaners');
		$(&quot;#full-button&quot;).text('Enable Full Screen');
	}
});

&lt;/script&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-window-full-screen-in-javascript/">How to Window Full Screen In JavaScript</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-window-full-screen-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
