<?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>Forem: CodingFlicks</title>
    <description>The latest articles on Forem by CodingFlicks (@codingflicks).</description>
    <link>https://forem.com/codingflicks</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%2F465588%2Ffaa9bfe8-eea6-4ff5-ab53-3fa27c5d0a65.jpg</url>
      <title>Forem: CodingFlicks</title>
      <link>https://forem.com/codingflicks</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/codingflicks"/>
    <language>en</language>
    <item>
      <title>Progress Bar with Percentage</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Thu, 14 Dec 2023 15:14:48 +0000</pubDate>
      <link>https://forem.com/codingflicks/progress-bar-with-percentage-hdp</link>
      <guid>https://forem.com/codingflicks/progress-bar-with-percentage-hdp</guid>
      <description>&lt;p&gt;A visual element used to represent the completion status of any task on a website is called a progress bar. This visual element provides a visual signal to the user of the ongoing process. The examples of Completion status of a task include loading a webpage, uploading a file, etc. A progress bar can be dynamically presented to the user. In this blog post, we will design a simple static progress bar with percentages using HTML and CSS. The video tutorial below shows the process of creating this snippet. Watch the video before collecting the source code.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/ufaTHsx8bH8"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Our today's snippet is an effective visual element to demonstrate proficiency levels in various technologies or skills. This element can be used to showcase a person's skills on any personal portfolio website. For example, indicating HTML proficiency as 98%, CSS as 95%, and JavaScript as 90% provides website visitors with a quick visual summary of any developer's skill set.&lt;/p&gt;

&lt;p&gt;You May Also Like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2023/11/sticky-navigation-bar-on-scroll-css-code.html"&gt;Sticky Navigation Bar On Scroll&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2023/10/css-gradient-border-animation.html"&gt;CSS Gradient Border Animation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The percentage values used here provide a summary of a person's strengths. Besides, the static progress bar with a percentage element is very important due to the Visual Appeal, User Engagement, Transparency, Professionalism, Efficiency, etc. of a website. Since this website element helps manage visitors' expectations and reduces uncertainty, you can keep it in your next website design.&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;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
     &amp;lt;!-- codingflicks.com --&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;Custom Progress bar with percentage&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="progress-container" data-percentage='70'&amp;gt;
        &amp;lt;div class="progress"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;div class="percentage"&amp;gt;75%&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    min-height: 100vh;
    margin: 0;
    background: deepskyblue;
}
.progress-container {
    box-shadow: 0 4px 5px rgb(0, 0, 0, 0.1)
}
.progress-container, .progress {
    background-color: #ffffff;
    border-radius: 50px;
    position: relative;
    height: 14px;
    width: 500px;
}
.progress {
    background-color: #212121;
    width: 75%;
    transition: width 0.4s linear;
}
.percentage {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgb(0, 0, 0, 0.5);
    color: #212121;
    font-size: 15px;
    padding: 4px;
    position: absolute;
    top: 25px;
    left: 75%;
    transform: translateX(-50%);
    width: 40px;
    text-align: center;
    transition: left 0.4s linear;
}
.percentage::after {
    background-color: #fff;
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    height: 15px;
    width: 15px;
    z-index: -1;
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For the Original Post &lt;a href="https://www.codingflicks.com/2023/11/custom-progress-bar-with-percentage-using-html-css.html"&gt;CLICK HERE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
      <category>frontend</category>
    </item>
    <item>
      <title>Simple CSS Loader Spinner</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Fri, 24 Nov 2023 08:23:35 +0000</pubDate>
      <link>https://forem.com/codingflicks/simple-css-loader-spinner-1fj4</link>
      <guid>https://forem.com/codingflicks/simple-css-loader-spinner-1fj4</guid>
      <description>&lt;p&gt;The animations we see before loading the page content of a website are called website loader animations. Loader animations are especially helpful in situations where a webpage may take a few moments to load due to large files or videos. Today we will design a simple loader spinner with only HTML and CSS. Below is the video tutorial to make this loader spinner.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/22vMh9YCNbE"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Loader animation is an important part of the website design process because it improves the overall user experience. A user can understand that the page is not broken or unresponsive through the loader animation. Due to the content of the website, sometimes the website takes time to load. Users are more likely to tolerate waiting if they have an attractive and engaging visual indication that progress is being made.&lt;/p&gt;

&lt;p&gt;You May Also Like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2023/09/css-transparent-login-form-design.html"&gt;CSS Transparent Login Form Design&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2022/12/auto-image-slideshow-using-html-css.html"&gt;Auto Image Slideshow Using HTML CSS&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A visually appealing loader animation can reduce the frustration of website loading times and make waiting times more tolerable. A loading spinner, we designed here is also a loader of many kinds of loaders we use in the web design process. This loading spinner is basically a circular type and this animated graphic keeps spinning while the webpage is loading.&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;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
  &amp;lt;!-- codingflicks.com --&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
  &amp;lt;title&amp;gt;Pure CSS Loader Spinner&amp;lt;/title&amp;gt;
  &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;div class="wrapper"&amp;gt;
    &amp;lt;div class="loader"&amp;gt;&amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrapper{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
}
.loader{
  width: 250px;
  height: 250px;
  border: 20px solid #14e2b6;
  border-top-color: transparent;
  border-radius: 50%;
  animation: animate 1s linear infinite;
}
@keyframes animate{
    to{
      transform: rotate(-360deg);
    }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For the Original Post &lt;a href="https://www.codingflicks.com/2023/11/how-to-make-simple-css-loader-spinner.html"&gt;CLICK HERE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>frontend</category>
    </item>
    <item>
      <title>HTML CSS Reflection Effect</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Fri, 24 Nov 2023 08:04:39 +0000</pubDate>
      <link>https://forem.com/codingflicks/html-css-reflection-effect-48eb</link>
      <guid>https://forem.com/codingflicks/html-css-reflection-effect-48eb</guid>
      <description>&lt;p&gt;Today we will share with you a CSS Tricks snippet of the Realistic Image Reflection effect made with HTML CSS. Realistic Image Reflection or HTML CSS Mirror Effect is a web design and development trick that simulates the appearance of an image reflected on a surface. Much like a reflection, you might see in water or on a shiny floor. Those of you learning CSS will learn about a new property from this snippet. A video tutorial below shows how to create this snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/ur4yz6Qh1pE"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Many use 'transform' and 'gradient' to position and style the reflected image to create image reflection effects with HTML CSS. But here we will use a CSS property called 'webkit-box-reflect'. Please note that this CSS property is not supported by some browsers such as Firefox, Internet Explorer, and Opera Mini. Beginners experiment with various properties of CSS in the beginning with the purpose of learning.&lt;/p&gt;

&lt;p&gt;You May Also Like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2021/09/video-slideshow-using-html-css-javascript.html"&gt;Video Slideshow using HTML CSS and JS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2022/09/bootstrap-5-modal-login-form-design.html"&gt;Bootstrap 5 Modal Login Form Design&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This snippet is made for this purpose only. This kind of reflection effect makes a website's images very visually appealing. This technique can be used to create the illusion that the website images are sitting on a reflective surface. It's a creative use of CSS and this technique can be used to present a website's image more dynamically.&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;!DOCTYPE html&amp;gt;
&amp;lt;!-- codingflicks.com --&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;Realistic Image Reflection using CSS&amp;lt;/title&amp;gt;
    &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="container"&amp;gt;
        &amp;lt;div class="image"&amp;gt;
          &amp;lt;img src="img/1.jpg" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="image"&amp;gt;
          &amp;lt;img src="img/2.jpg" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
        &amp;lt;div class="image"&amp;gt;
          &amp;lt;img src="img/3.jpg" alt=""&amp;gt;
        &amp;lt;/div&amp;gt;
      &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body {
    background: #000;
}
.container {
    width: 80%;
    margin: 10% auto;
    display: flex;
    justify-content: space-between;
}
.image {
    width: 30%;
    height: 200px;
}
.image img {
    width: 100%;
    -webkit-box-reflect: below 4px linear-gradient(transparent 25%, rgba(0, 0, 0, 0.35));
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For the Original Post &lt;a href="https://www.codingflicks.com/2023/11/html-css-reflection-effect.html"&gt;CLICK HERE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>frontend</category>
    </item>
    <item>
      <title>Contact Form Input Label Animation</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Thu, 16 Nov 2023 04:37:22 +0000</pubDate>
      <link>https://forem.com/codingflicks/contact-form-input-label-animation-42j</link>
      <guid>https://forem.com/codingflicks/contact-form-input-label-animation-42j</guid>
      <description>&lt;p&gt;A contact form design is a website component through which a user can contact the website owner. In this contact form user enters his email, name, and query or message and clicks on the send button. After that, the message reaches the website owner. The website owner reads the message and replies to that user. This contact form creates a communication bridge between the user and the website owner. Today we will create a simple contact form design whose input labels will animate. Only HTML and CSS were used to create this snippet. Below is a video tutorial showing the entire process of creating this CSS form.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/tyC9K7isLAU"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Contact Us page design is as important as any other page design in the website design process. Contact forms play an important role in facilitating the data collection process. This website component makes it much easier to reach website owners, ask questions, provide feedback, or request services. Adding animation to form design makes it more visually appealing and engaging. Animation plays an important role in attracting users' attention and adding a touch of professionalism and modernity to the contact form design.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You May Also Like:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2020/07/responsive-infinite-client-logo-carousel-slider.html"&gt;Infinite Client Logo Slider&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2020/11/transparent-login-form.html"&gt;Transparent Login Form HTML CSS&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A popular animation technique in form design is input label animation, where form labels move or transform as the user interacts with the corresponding input field. HTML and CSS are sufficient to implement such input label animations. CSS animations and transitions can be used to create desired effects on contact forms. &lt;a href="https://www.codingflicks.com/2023/11/contact-form-input-label-animation.html"&gt;DOWNLOAD CODE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>css</category>
      <category>html</category>
      <category>animation</category>
    </item>
    <item>
      <title>CSS Gradient Border Animation</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Fri, 03 Nov 2023 04:07:11 +0000</pubDate>
      <link>https://forem.com/codingflicks/css-gradient-border-animation-25po</link>
      <guid>https://forem.com/codingflicks/css-gradient-border-animation-25po</guid>
      <description>&lt;p&gt;CSS Gradient Border Animation Animation is a type of visually appealing effect that is used in various elements of the website such as buttons, cards, etc. Animating the border of an element using CSS gradients can not only look good but also increase user engagement. Today we will share with you a snippet about gradient border animation. The video tutorial below shows the step-by-step process of making it.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/kqdZmGoTQ1c"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;The gradient border CSS concept provides an eye-catching design when hovering over an element. This gradient border animation looks good on web applications or websites that are usually of dark-themed type. It is now common to see gradients used to animate the borders of HTML elements. There are many famous websites that use CSS gradient border animation. Some of them are Google, Twitter, Dribble, Behance, Codepen, etc.&lt;/p&gt;

&lt;p&gt;You May Also Like:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.codingflicks.com/2023/04/css-full-screen-overlay-navigation.html"&gt;CSS Full Screen Overlay Navigation&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.codingflicks.com/2021/11/background-animation-using-particles-js.html"&gt;Background Animation HTML CSS and Particles JS&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.codingflicks.com/2021/07/responsive-bootstrap-4-vertical-tab-design.html"&gt;Responsive Bootstrap Vertical Tab Design&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A website that has interactive buttons can use gradient border animation on hover or click events. This will undoubtedly boost the website's user engagement. It plays an important role in drawing the attention of users and increasing conversions. Apart from button elements, this gradient border animation can also be used in Dividers, Separators, Loading Indicators, or Service boxes.&lt;/p&gt;

&lt;p&gt;The use of CSS gradient border animation has various advantages. Improved Visual Appeal, Engagement, Interactivity, Attention, and Focus are a few of them. Using CSS Gradient Properties, CSS Transitions, and Keyframes we can create dynamic gradient border effects without the need for JavaScript. This example of a CSS animation is cross-browser compatible, meaning it works with most current browsers.&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;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
&amp;lt;!-- codingflicks.com --&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;Gradient Border Animation&amp;lt;/title&amp;gt;
    &amp;lt;link href="style.css" rel="stylesheet"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="wrapper"&amp;gt;
        &amp;lt;div class="box"&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #212121;
}
.wrapper {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 400px;
    width: 350px;
}
.box {
    height: 400px;
    width: 350px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.box:before {
    content: "";
    height: 150%;
    width: 150%;
    position: absolute;
    left: -25%;
    top: -25%;
    animation: animate 2s infinite linear;
    background-image: conic-gradient(red, orange, yellow, green, blue, indigo, violet);
}
.box::after {
    position: absolute;
    content: "";
    background-color: #212121;
    height: 96%;
    width: 96%;
    top: 2%;
    left: 2%;
    border-radius: 5px;
}
@keyframes animate {
    100% {
        transform: rotate(-360deg);
    }
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For More &lt;a href="https://www.codingflicks.com/2023/10/css-gradient-border-animation.html"&gt;CLICK HERE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>animation</category>
    </item>
    <item>
      <title>Responsive Neumorphism Service Section</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Fri, 03 Nov 2023 03:43:23 +0000</pubDate>
      <link>https://forem.com/codingflicks/responsive-neumorphism-service-section-3e8i</link>
      <guid>https://forem.com/codingflicks/responsive-neumorphism-service-section-3e8i</guid>
      <description>&lt;p&gt;The Services section is made up of information about the services or products that a website owner or organization provides. Suppose you are running a Frontend Development Online Course website. In the website services section, you just need to inform your visitors about the services you are providing, isn't it? Otherwise, they will not know about your frontend development services and you will lose customers. Today we will design a simple responsive services section using the CSS Flexbox grid system. In this snippet, we will use a dark neomorphic design technique and CSS animation for the hover effect. The video tutorial below will show you the process of making this snippet.&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/S4zbq7l6TGM"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;We hope you have seen the video tutorial about the Responsive Neumorphism Service Section. One of the vital components of a website is the service section or service page. Because this section or page serves the main purpose of a website. &lt;/p&gt;

&lt;p&gt;You may Also Like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2022/04/automatic-image-slider-in-html-and-css.html"&gt;Automatic Image slider in HTML and CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2023/10/awesome-css-button-hover-animation.html"&gt;Awesome CSS Button Hover Animation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.codingflicks.com/2023/10/css-3d-card-flipping-animation.html"&gt;CSS 3D Card Flipping Animation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The main function of this section or page is to clearly inform the visitors about a product. Doing so builds trust with visitors and helps them make decisions. On the other hand, the service section can also be used as a marketing tool. By highlighting the unique features, benefits, and value proposition of your services, you can grab visitors' attention. The service section is important for many other reasons. Some of these are SEO benefits, user experience, conversion and lead generation, competitive edge, marketing, etc.&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;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;
    &amp;lt;!-- codingflicks.com --&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset="UTF-8"&amp;gt;
    &amp;lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0"&amp;gt;
    &amp;lt;title&amp;gt;CSS Service Section Design&amp;lt;/title&amp;gt;
    &amp;lt;link href="https://fonts.googleapis.com/css2?family=Montserrat&amp;amp;display=swap" rel="stylesheet"&amp;gt;
    &amp;lt;link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"&amp;gt;
    &amp;lt;link rel="stylesheet" href="style.css"&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;div class="wrapper"&amp;gt;        
        &amp;lt;div class="card"&amp;gt;
            &amp;lt;div class="icon"&amp;gt;
                &amp;lt;i class="fa fa-envira"&amp;gt;&amp;lt;/i&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;h2&amp;gt;Service Heading&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo, modi&amp;lt;/p&amp;gt;
            &amp;lt;a href="#"&amp;gt;Learn More&amp;lt;/a&amp;gt;
        &amp;lt;/div&amp;gt;      
        &amp;lt;div class="card"&amp;gt;
            &amp;lt;div class="icon"&amp;gt;
                &amp;lt;i class="fa fa-bar-chart"&amp;gt;&amp;lt;/i&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;h2&amp;gt;Service Heading&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo, modi&amp;lt;/p&amp;gt;
            &amp;lt;a href="#"&amp;gt;Learn More&amp;lt;/a&amp;gt;
        &amp;lt;/div&amp;gt;      
        &amp;lt;div class="card"&amp;gt;
            &amp;lt;div class="icon"&amp;gt;
                &amp;lt;i class="fa fa-clipboard"&amp;gt;&amp;lt;/i&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;h2&amp;gt;Service Heading&amp;lt;/h2&amp;gt;
            &amp;lt;p&amp;gt;Lorem ipsum dolor sit amet consectetur adipisicing elit. Quo, modi&amp;lt;/p&amp;gt;
            &amp;lt;a href="#"&amp;gt;Learn More&amp;lt;/a&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;* {
    margin: 0;
    padding: 0;
  }
body {
    background: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: montserrat;
  }  
  .wrapper {
    width: 80%;
    display: flex;
    justify-content: space-around;
  }
  .icon {
    width: 70px;
    height: 70px;
    background: #ee5310;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .icon i {
    color: #fff;
    font-size: 25px;
  }
  .card {
    width: 300px;
    height: 350px;
    background-color: #212121;
    box-shadow: 15px 15px 30px #191919, -15px -15px 30px #292929;
    transition: all .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #a7a9ab;
  }
  .card h2 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
  }
  .card p {
    font-size: 12px;
    line-height: 2;
  }
  .card a {
    background: linear-gradient(45deg,#bf2311,#e7550c);
    display: inline-block;
    text-decoration: none;
    color: #fff;
    margin-top: 30px;
    padding: 5px 20px;
    border-radius: 50px;
  }
   .card:hover {
    transform: scale(1.05);
   }
   .card:hover i{
    transition: all .9s ease;
    transform: rotate(360deg); 
   }

   @media (max-width:991px){
    .wrapper {
      flex-direction: column;
      margin: auto;
      align-items: center;
    }
    .card{
      width: 250px;
      margin-bottom: 30px;
    }
   }


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For More &lt;a href="https://www.codingflicks.com/2023/10/responsive-neumorphism-service-section.html"&gt;VISIT HERE&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>website</category>
    </item>
    <item>
      <title>Creative Image Hover Overlay Effect</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Sat, 27 Mar 2021 14:03:30 +0000</pubDate>
      <link>https://forem.com/codingflicks/creative-image-hover-overlay-effect-2o6</link>
      <guid>https://forem.com/codingflicks/creative-image-hover-overlay-effect-2o6</guid>
      <description>&lt;p&gt;Image hover effects create an opportunity to add interactivity to elements on a website without slowing it down. Every website now nowadays implementing creative hover effects in their webpage to make it looks even better than others. This Snippet is based on a creative CSS image hover effect made with only HTML and CSS. in this animation when we will hover over the image, the text will appear from the back image slide is attached to the hinge or so. &lt;a href="https://www.codingflicks.com/2021/03/nice-image-hover-overlay-effect.html"&gt;Download the Source Code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Glowing Social Media Icons</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Wed, 25 Nov 2020 07:16:38 +0000</pubDate>
      <link>https://forem.com/codingflicks/glowing-social-media-icons-ig5</link>
      <guid>https://forem.com/codingflicks/glowing-social-media-icons-ig5</guid>
      <description>&lt;p&gt;The widget of Social Media is something to display icons of their social networks and connections and other subscription options to show icons on those social media sites. This blog will make a simple glowing animation on social media icons using HTML and CSS. This kind of glowing CSS animation is stylish and makes a widget looks beautiful. &lt;a href="https://www.codingflicks.com/2020/11/glowing-effect-social-media-icons-widget.html"&gt;Download the Source Code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Pure CSS Page Transition Effect</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Sun, 22 Nov 2020 04:52:04 +0000</pubDate>
      <link>https://forem.com/codingflicks/pure-css-page-transition-effect-324b</link>
      <guid>https://forem.com/codingflicks/pure-css-page-transition-effect-324b</guid>
      <description>&lt;p&gt;The transition effect of page in CSS is the transition between sections or pages used for a given website. It creates a good browsing experience among the users. When applied correctly, they can provide a sense of liveliness and help significantly with navigation. Today, I am sharing the code of a snippet based on how to create a pure CSS page transition effect. Only plain HTML and CSS were used while doing this project. First, I made a simple navbar, and then I used the target attribute and the CSS transform property to create this simple page transition effect. &lt;a href="https://www.codingflicks.com/2020/11/pure-css-page-transition-effect.html"&gt;Download the Source Code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How to make CSS Zigzag borders</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Sun, 15 Nov 2020 17:33:24 +0000</pubDate>
      <link>https://forem.com/codingflicks/how-to-make-css-zigzag-borders-1em3</link>
      <guid>https://forem.com/codingflicks/how-to-make-css-zigzag-borders-1em3</guid>
      <description>&lt;p&gt;Hello Friends, today, we are creating a snippet based on How to make a Zigzag border using HTML and CSS. Here we will make a CSS zigzag vertical edge for the banner image. We often see websites using curved or different shaped frames to make their website look aesthetic and slightly different from the traditional website. Zigzag borders are often used for the banner image or the other sections like services, portfolios, blogs, etc.&lt;a href="https://www.codingflicks.com/2020/11/how-to-make-css-zigzag-borders.html"&gt;Download the Source Code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Expanding Search Bar using HTML CSS JQuery</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Fri, 13 Nov 2020 04:54:32 +0000</pubDate>
      <link>https://forem.com/codingflicks/expanding-search-bar-using-html-css-jquery-5gbf</link>
      <guid>https://forem.com/codingflicks/expanding-search-bar-using-html-css-jquery-5gbf</guid>
      <description>&lt;p&gt;Hello Friends, Today, I share a project on expanding search bar animation using HTML, CSS, and jquery. The search box is one of the standard features of any website nowadays. search bars perform as the gateway of the contents available on your webpage. Using this, the user-friendliness of the website increases. Today we are making a search box animation where if a user clicks on the search icon, the search box will expand but closes again when we click on the same icon.&lt;a href="https://www.codingflicks.com/2020/11/expanding-search-bar-html-css-jquery.html"&gt;Download the Code&lt;/a&gt;&lt;/p&gt;

</description>
      <category>jquery</category>
      <category>html</category>
      <category>css</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Homepage Template Bootstrap</title>
      <dc:creator>CodingFlicks</dc:creator>
      <pubDate>Wed, 11 Nov 2020 13:36:44 +0000</pubDate>
      <link>https://forem.com/codingflicks/homepage-template-bootstrap-2n3d</link>
      <guid>https://forem.com/codingflicks/homepage-template-bootstrap-2n3d</guid>
      <description>&lt;p&gt;In this blog, I am sharing another bootstrap-based snippet on creating a homepage template using bootstrap. I am using animate CSS to make an excellent text animation while bootstrap carousel works. I used a static background image for the carousel so that only the text animate.&lt;a href="https://www.codingflicks.com/2020/11/homepage-template-bootstrap.html"&gt;Download the Source Code&lt;/a&gt;&lt;/p&gt;

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