{"componentChunkName":"component---src-templates-blog-list-template-js","path":"/151","result":{"data":{"allMarkdownRemark":{"edges":[{"node":{"excerpt":"Bower is a popular package manager to help you quickly deploy components. In this article I'm going to show you how to install Bower and how…","fields":{"slug":"/engineering/how-to-use-bower-to-install-bootstrap/"},"html":"<p>Bower is a popular package manager to help you quickly deploy components. In this article I'm going to show you how to install Bower and how to use it to install Bootstrap.</p>\n<p>Pre-requisites: To install Bower you must first have Node.js and npm (another package manager) installed, your computer may have shipped with these pre-installed. To check if you have npm, open your command-line tool and type:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"0\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">npm -v</span></code></pre>\n<p>If you do not get a version number, you may need to install npm which comes pre-packaged with Node.js</p>\n<p>You can find Node.js along with instructions on how-to install it here: <a href=\"https://nodejs.org/en/\">NodeJS</a></p>\n<p><strong>Windows Users Only</strong>: If you're a Windows user make sure you have Git for Windows installed to work with the Windows Command Prompt with Checkout Windows-Style and commit Unix-style line endings. You can find more information on that here: <a href=\"https://git-for-windows.github.io\">Git for Windows</a></p>\n<h2 id=\"installation\" style=\"position:relative;\"><a href=\"#installation\" aria-label=\"installation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Installation:</h2>\n<p>Provided that you have both Node.js and npm installed, run the following command in your Command-line tool:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"1\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">npm install -g bower</span></code></pre>\n<h2 id=\"usage\" style=\"position:relative;\"><a href=\"#usage\" aria-label=\"usage permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Usage:</h2>\n<p>Once Bower is installed it's as easy as going to your project folder in Command-line and typing:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"2\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install bootstrap</span></code></pre>\n<p>followed by:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"3\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install jquery</span></code></pre>\n<p>This will install the files required for Bootstrap in the newly created 'bower_components' folder.</p>\n<p>In this folder you will have 2 new folders 'bootstrap' and 'jquery'.</p>\n<p>The next step is to include the files for both jQuery and Bootstrap into your project file(s).</p>\n<p>...And that's it, you're good to go.</p>\n<h2 id=\"updating\" style=\"position:relative;\"><a href=\"#updating\" aria-label=\"updating permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Updating</h2>\n<p>If you need to update a project and are unsure which bower packages you have installed that might need an update, you can type</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"4\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower list</span></code></pre>\n<p>in your project directory for a listing of packages you installed via Bower and which ones are due for an update.</p>\n<p>in this case if we wanted to update our bootstrap install we would do:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"5\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower update bootstrap</span></code></pre>\n<h2 id=\"making-your-bower-configurations-portable\" style=\"position:relative;\"><a href=\"#making-your-bower-configurations-portable\" aria-label=\"making your bower configurations portable permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Making your Bower configurations portable</h2>\n<p>Once you have figured out your configurations and installed all of your desired Bower packages you can use:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"6\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower init</span></code></pre>\n<p>Follow the steps provided in your Command-line.</p>\n<p>This will initialize a bower.json file which will store your configurations.</p>\n<p>Once you have your Bower.json file you can move it around to other locations or projects and you can get Bower to reinstall all of your packages and configurations by typing:</p>\n<pre class=\"grvsc-container dark-default-dark\" data-language=\"shell\" data-index=\"7\"><code class=\"grvsc-code\"><span class=\"grvsc-line\">bower install</span></code></pre>\n<p>This will get Bower to create another 'bower_components' folder with the same packages and configurations specified in your bower.json file.</p>\n<p>For further information on using or configuring Bower <a href=\"https://bower.io/\">You can checkout the official website</a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n  .dark-default-dark {\n    background-color: #1E1E1E;\n    color: #D4D4D4;\n  }\n</style>","frontmatter":{"date":"July 05, 2017","updated_date":null,"description":"Learn how the Bower package manager helps into quick components  deploy and install Bootstrap using Bower","title":"Install Bootstrap with Bower","tags":["Bootstrap","Bower"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.1363636363636365,"src":"/static/d319266a1157fbb5549a7b376455d29a/58556/bower-logo.webp","srcSet":"/static/d319266a1157fbb5549a7b376455d29a/61e93/bower-logo.webp 200w,\n/static/d319266a1157fbb5549a7b376455d29a/1f5c5/bower-logo.webp 400w,\n/static/d319266a1157fbb5549a7b376455d29a/58556/bower-logo.webp 800w,\n/static/d319266a1157fbb5549a7b376455d29a/cc834/bower-logo.webp 1024w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Pascal Noel","github":null,"avatar":null}}}},{"node":{"excerpt":"Mapegy is a SaaS company based in Berlin, Germany that focuses on big data and innovation analytics, and provides online solutions as well…","fields":{"slug":"/identity/mapegy-loginradius-customer-success-story/"},"html":"<p><a href=\"https://www.mapegy.com/\">Mapegy</a> is a SaaS company based in Berlin, Germany that focuses on big data and innovation analytics, and provides online solutions as well as consultancy services. They are pros at tracking and measuring global innovation and technology trends, and they use this knowledge to help businesses and corporations make strategic decisions and create business opportunities.</p>\n<p>Our friend, James Gardner, the COO of Mapegy, shares his insights into the challenges that brought them to LoginRadius, and what’s kept our partnership successful all these years.</p>\n<h4 id=\"the-situation\" style=\"position:relative;\"><a href=\"#the-situation\" aria-label=\"the situation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The Situation</strong></h4>\n<p>Mapegy needed user management solution that can be easily implemented and deployed so they can focus their efforts and resources on innovating their own products and services. </p>\n<h4 id=\"challenges\" style=\"position:relative;\"><a href=\"#challenges\" aria-label=\"challenges permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Challenges</strong></h4>\n<p>The three main concerns that needed to be addressed with the user management solution were:</p>\n<ol>\n<li>Reliability and scalability</li>\n<li>Simple registration and login process for a positive user experience</li>\n<li>Ability to extract valuable profile information</li>\n</ol>\n<h4 id=\"the-loginradius-solution\" style=\"position:relative;\"><a href=\"#the-loginradius-solution\" aria-label=\"the loginradius solution permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The LoginRadius Solution</strong></h4>\n<p>With a flexible and customizable platform, alongside a <a href=\"https://www.loginradius.com/\">guaranteed 99.99% uptime</a>, Mapegy was reassured from the get-go that our solution is indeed both reliable and scalable when catering to their needs and user base as they grow. As well, our login and registration flows allowed Mapegy to provide their users with a streamlined and hassle-free login and registration process while creating <a href=\"https://www.loginradius.com/custom-object/\">centralized user profiles with the extended data points</a> that Mapegy was looking for.</p>\n<p>This played a significant role both in improving the user experience and providing Mapegy with the necessary data in order to to better understand their users.</p>\n<p>This also gave them the information to build their innovation graph as they continued to create and provide products that are the most relevant to their user base. As a company that serves global customers, we make sure that our support team is always available 24/7, regardless of what time zone they may be located in, and Mapegy has first-hand experience on the skills and speediness of our support team.</p>\n<p>Throughout their implementation process, our support team has always been readily available to answer any questions that Mapegy has and made sure that there is no lag in the support and the service that they would receive.</p>\n<iframe width=\"770\" height=\"480\" src=\"https://www.youtube.com/embed/icfip6ayoY8\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n<p>Mapegy - LoginRadius Customer Success Story</p>\n<p><a href=\"https://www.loginradius.com/contact-us?utm_source=blog&#x26;utm_medium=web&#x26;utm_campaign=mapegy-loginradius-customer-success-story\"><img src=\"/788a6a84e389edac18728007099fdc1d/Book-a-free-demo-request-1024x310.webp\" alt=\"book-a-free-demo-loginradius\"></a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"June 15, 2017","updated_date":null,"description":"Mapegy was reassured from the get-go with a versatile and adjustable platform, alongside a guaranteed 99.99 percent uptime, that our solution is indeed both reliable and scalable when adapting to their needs and user base as they expand. Our login and registration flows have helped Mapegy to provide a simplified and hassle-free login and registration process for their users while building centralised user profiles with the extended data points that Mapegy was searching for.","title":"Mapegy, a LoginRadius Customer Success Story","tags":["media-and-publication"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/24318811f184da31876379297f3365df/58556/Mapegy_LR.webp","srcSet":"/static/24318811f184da31876379297f3365df/61e93/Mapegy_LR.webp 200w,\n/static/24318811f184da31876379297f3365df/1f5c5/Mapegy_LR.webp 400w,\n/static/24318811f184da31876379297f3365df/58556/Mapegy_LR.webp 800w,\n/static/24318811f184da31876379297f3365df/feae4/Mapegy_LR.webp 961w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Karl Wittig","github":null,"avatar":null}}}},{"node":{"excerpt":"Founded in 1995 by Arik Johnson, Aurora Worldwide Development Corporation (WDC) is a leading analytics and intelligence firm providing…","fields":{"slug":"/identity/aurora-wdc-loginradius-customer-success-story/"},"html":"<p><img src=\"/870c51947a23ce9e8ef5bbddf29e0d94/LR-Aurora-WDC.webp\"></p>\n<p>Founded in 1995 by Arik Johnson, <a href=\"https://aurorawdc.com/\">Aurora Worldwide Development Corporation (WDC)</a> is a leading analytics and intelligence firm providing consultative services to corporate clients worldwide. We are grateful to be able to have such a long-standing relationship with Aurora WDC and glad that we have been able to help them in providing a better user experience and a well-rounded solution to better manage their client relationships.</p>\n<p>Here, we share the story of Aurora WDC's journey with LoginRadius (with the video down below).</p>\n<h4 id=\"the-situation\" style=\"position:relative;\"><a href=\"#the-situation\" aria-label=\"the situation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>The Situation</strong></h4>\n<p>In 2012, Aurora WDC built a social learning platform, Reconverge.net, with the goal of creating a community where their clients are able to connect with each other and learn how to do competitive intelligence work more effectively.</p>\n<h4 id=\"challenges\" style=\"position:relative;\"><a href=\"#challenges\" aria-label=\"challenges permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Challenges</strong></h4>\n<p>In order to build an effective social learning platform and attract members to become a part of this community, there were a few hurdles that Aurora WDC needed to overcome:</p>\n<ul>\n<li>Simplify the login and authentication process</li>\n<li>The solution needs to be compatible with and implemented on their WordPress websites</li>\n<li>Need to integrate the user data with other systems, namely Salesforce and Pardot</li>\n<li>Eventually transitioned to Hubspot - need to re-integrate with the new system</li>\n</ul>\n<h4 id=\"loginradius-solutions\" style=\"position:relative;\"><a href=\"#loginradius-solutions\" aria-label=\"loginradius solutions permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>LoginRadius Solutions</strong></h4>\n<p>When Aurora WDC approached LoginRadius with said challenges, we gracefully accepted and proceeded to tackle every single one of them. First and foremost, <a href=\"https://www.loginradius.com/social-login/\">our social login feature</a> allowed them to provide social login options for their users, which resulted in a quick and easy registration and authentication process.</p>\n<p>Users no longer had to experience the hassle of entering in their personal details or come up with yet another password, and can simply select and login with their preferred social provider.</p>\n<p>In addition, LoginRadius' comprehensive WordPress plugin ensured that there were no issues when implementing this solution on Aurora WDC's WordPress-based sites.</p>\n<p>One of the main strengths of LoginRadius <a href=\"https://www.loginradius.com/blog/identity/customer-identity-and-access-management/\">customer identity and access management</a> platform is its flexibility to integrate with multiple systems and tools that our customers are using to help enhance their workflows.</p>\n<p>In this case, we were able to successfully integrate Aurora WDC's LoginRadius account and user data with both Salesforce and Pardot so they can have a clear view of their clients and manage those relationships, as well as maximize their marketing efforts based on the user data collected via LoginRadius.</p>\n<p>As Aurora WDC transitioned to Hubspot, we stepped up our game and re-integrated them with Hubspot to make sure that there is no interruption as they continue to build their client relationships.</p>\n<iframe width=\"770\" height=\"480\" src=\"https://www.youtube.com/embed/4AIlzL5QRqo\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>\n<p>Aurora WDC - LoginRadius Customer Success Story</p>\n<p><a href=\"https://www.loginradius.com/contact-us?utm_source=blog&#x26;utm_medium=web&#x26;utm_campaign=aurora-wdc-loginradius-customer-success-story\"><img src=\"/8fce571f703a5970dbb1359a2fe0e51a/book-a-demo-loginradius.webp\" alt=\"book-free-demo-loginradius\"></a></p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"May 26, 2017","updated_date":null,"description":"Aurora WDC is a leading analytics and intelligence company that has been able, with the aid of LoginRadius, to provide its members with an improved user experience and to better manage their customer relationships.","title":"Aurora WDC, a LoginRadius Customer Success Story","tags":["media-and-publication"],"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/870c51947a23ce9e8ef5bbddf29e0d94/58556/aurora-wdc-loginradius-customer-success-story.webp","srcSet":"/static/870c51947a23ce9e8ef5bbddf29e0d94/61e93/aurora-wdc-loginradius-customer-success-story.webp 200w,\n/static/870c51947a23ce9e8ef5bbddf29e0d94/1f5c5/aurora-wdc-loginradius-customer-success-story.webp 400w,\n/static/870c51947a23ce9e8ef5bbddf29e0d94/58556/aurora-wdc-loginradius-customer-success-story.webp 800w,\n/static/870c51947a23ce9e8ef5bbddf29e0d94/2ed18/aurora-wdc-loginradius-customer-success-story.webp 959w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Karl Wittig","github":null,"avatar":null}}}},{"node":{"excerpt":"Did you know 90% of all product assessments are based on colors and 85% of buyers select a product on the basis of its color?  Hence…","fields":{"slug":"/growth/complete-color-scheme-guide-for-your-website/"},"html":"<p>Did you know <a href=\"https://blog.bufferapp.com/the-science-of-colors-in-marketing-why-is-facebook-blue\">90% of all product</a> assessments are based on colors and 85% of buyers select a product on the basis of its color? </p>\n<p>Hence, selecting a perfect color plan for your website is important. But, it can seem like a tough game- especially if you do not trust your color senses. I have seen people getting nervous or confused when it comes to decide a color scheme for anything. It may because they are not confident at the deciding stuff or may be they are color blind.</p>\n<p><em><strong>Fun Fact</strong>:- Mark Zuckerberg is red-green colorblind (that’s the reason why Facebook is blue).</em></p>\n<p>So, coming back to the point, what’s your story? Do you also have these three questions while deciding your website’s color scheme:-</p>\n<ul>\n<li>What colors should your title or logo have?</li>\n<li>What are different colors that go well with different parts of website?</li>\n<li>Are there any good tools to make things a lot easier?</li>\n</ul>\n<p>You can turn your website into a harmonious place or a piece from a horror movie with your color schemes. Hence, here I am presenting a guide to help you decide what is wrong and what is right for your website in terms of color scheme.</p>\n<h3 id=\"influence-of-color-on-your-business-identity\" style=\"position:relative;\"><a href=\"#influence-of-color-on-your-business-identity\" aria-label=\"influence of color on your business identity permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Influence of Color on your Business Identity</strong></h3>\n<p>Whether it is your brand image or your website, colors can work like magic on your business. And while talking about the role of color in business, Coca Cola is the best example.</p>\n<p>What are the things that come to your mind when I say the word Coca Cola? Obviously, a bottle of it. Then, the red logo of Coca-Cola. There was a reason why Coca-Cola chose the color “Red”.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 620px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 76.61290322580645%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRgwBAABXRUJQVlA4WAoAAAAQAAAAEwAADgAAQUxQSEYAAAABb6CgbRuGP+R2xzQiIvBYmEBNte2U++yPoI0CNNBDBAGus8lsFUKh/98EiOj/BPgY0HQVI4sBchvOUDs/BLjbkpG5Lvw8VlA4IKAAAABwBACdASoUAA8APtFUo0uoJKMhsAgBABoJbAC7AYvM5EsX9TOa7qJV+g2fyAD+yyOMHYM54sQSVYok/NpD2Q2Hi4aRii7gxXa722oZwdhumigZtp/hC3BrIA7nfX5SgR5Ii32kuh3oN//xGSzY2Oehv8qwb4ATbLAphGdGYqde/l5LyCCOLyySRTapel3vgt6ociQm1M0/HrzthSLPgAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Coca Cola\"\n        title=\"Coca Cola\"\n        src=\"/static/1a2903b6ac97392ab2a4f60a41b53118/cf77e/Coca-Cola.webp\"\n        srcset=\"/static/1a2903b6ac97392ab2a4f60a41b53118/cf77e/Coca-Cola.webp 620w\"\n        sizes=\"(max-width: 620px) 100vw, 620px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"http://1.bp.blogspot.com/-feRUkS6z3uo/VIctsB0pI1I/AAAAAAAAAAo/nbmsMeSl_ls/s1600/india.webp?ver=1553881376\">Source</a></strong> </p>\n<p>Red shows excitement, passion and boldness and these were the emotions Coca-Cola wanted to convey with its product. Moreover, the color red makes it more visible on the shelves from its competitors. Well, here is an image showing reasons for different brands choosing respective colors in their logos.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 86.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRtQAAABXRUJQVlA4IMgAAABQBQCdASoUABEAPtFgqU+oJSOiKAgBABoJbACdMuIyhQ4AWavlFrQAZA3DaPTWopegA4AA/u4Urxr+pk00kR2Ef+hyKvpCz4UTG8HkVu8SBPhgn5AJxOZiAHH7uSG+FUz4GcE9/GmUWl/PjorgeziQ/MQYqKdgNYt328yLqJIWyWTPsXn6n+bGSm7VdoFvdSR6v8NoanZfWWlfhTpU2JlwJcctHa8OVK6w3xUW8Lm+KXsjNbr9Rtl0lOEKIJ0SLjtZbEMBGQAAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color emotion guide\"\n        title=\"Color emotion guide\"\n        src=\"/static/10b531743b8c2cbeeada438003538e49/8b983/Color-emotion-guide.webp\"\n        srcset=\"/static/10b531743b8c2cbeeada438003538e49/c1dc5/Color-emotion-guide.webp 650w,\n/static/10b531743b8c2cbeeada438003538e49/8b983/Color-emotion-guide.webp 768w,\n/static/10b531743b8c2cbeeada438003538e49/dde0f/Color-emotion-guide.webp 1516w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"http://blog.dahmundfreunde.de/wp-content/uploads/2014/05/grafik.webp?ver=1553881376\">Source</a></strong> </p>\n<p>Kissmetrics says that there is an <a href=\"https://blog.kissmetrics.com/color-psychology/\">80% increase in brand recognition</a> when colors are used.</p>\n<p>So, how can you use colors to increase your brand recognition?</p>\n<p>Create an awesome color scheme and here’s <strong>how you can create a color scheme</strong>:-</p>\n<h3 id=\"cast-your-prominent-color\" style=\"position:relative;\"><a href=\"#cast-your-prominent-color\" aria-label=\"cast your prominent color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Cast Your Prominent Color</strong></h3>\n<p>Your customers will connect their emotions with your brand through your prominent color. Hence, choose a color that convey the emotions about your company (like the red color in Coca-Cola does). Your logo should contain your prominent color as the primary color. However, if you have no clue which color to cast as your prominent color, see this image to decide the color of your choice.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 89.38461538461537%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRsoAAABXRUJQVlA4IL4AAABwBACdASoUABIAPtFcpU6oJSMiKAqpABoJbACdMoRwEGZgKO/MCabkGWrmoAD+kb0usTQvyXNc2XOa9gU+CBuE7M0QVekSNbbS5KYK+YTVtHubHFqyrngoRVziiq3FtxRDCbtaJXYurjgs//ZDZr7KHpwMDVxJsy16i6rAuQS9LIliV6scZzROX5i9rzXS/zxybClUb/5Q8aUbSFTP1LECk1PaZ76yA2l8splyC5/2PFoYYQWVLpa+KzFAxAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Colors and types of consumers\"\n        title=\"Colors and types of consumers\"\n        src=\"/static/c5b2c7ee8d267c29b201dfcc39a97fde/8b983/Colors-and-types-of-consumers.webp\"\n        srcset=\"/static/c5b2c7ee8d267c29b201dfcc39a97fde/c1dc5/Colors-and-types-of-consumers.webp 650w,\n/static/c5b2c7ee8d267c29b201dfcc39a97fde/8b983/Colors-and-types-of-consumers.webp 768w,\n/static/c5b2c7ee8d267c29b201dfcc39a97fde/3c09d/Colors-and-types-of-consumers.webp 1648w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://mustafa12abdall.files.wordpress.com/2015/01/colors_customers_2.webp?ver=1553881376\">Source</a></strong></p>\n<p>You can also see for this chart to decide which colors to pick from the slot:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 80.61538461538461%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRq4AAABXRUJQVlA4IKIAAAAQBACdASoUABAAPtFUo0uoJKMhsAgBABoJbACdMoAC4/Cy2cgo1g9PAAD+yPOh24u/4i0TdXTnUAK6wXCLDIBJeAQJyAhlhPzgVmGNOGu5zmk4r9+vBp4CV7436Zs6cxWxJt0U6N5FbiuU65Xsl79Uum7O2tQsJsmSElAWW8+v5HvR7Gmvo1C5sb4rzXbRp3VTgeNj1RF59Lx/RBPsvJXv4AA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology\"\n        title=\"Color psychology\"\n        src=\"/static/73d74164e8c7a128b436376819faba88/8b983/Color-psychology.webp\"\n        srcset=\"/static/73d74164e8c7a128b436376819faba88/c1dc5/Color-psychology.webp 650w,\n/static/73d74164e8c7a128b436376819faba88/8b983/Color-psychology.webp 768w,\n/static/73d74164e8c7a128b436376819faba88/05fe0/Color-psychology.webp 1453w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://s-media-cache-ak0.pinimg.com/originals/25/93/1f/25931fe9980a8a2e06cd66df76a055ee.webp?ver=1553881376\"><strong>Source</strong></a> </p>\n<p>Other than these psychological facts, you can check whether you are going to serve a youthful and energetic audience or your product is targeting a female audience. Hence, you have to decide the color on the basis of your targeted audience. </p>\n<p><em><strong>Fun Fact:-</strong> Do you know why hyperlinks are <a href=\"https://blog.kissmetrics.com/how-colors-affect-conversions/\">blue</a>?</em></p>\n<p>It is found out that most of the color blind patients are red-green color blinded just like Mark Zuckerberg. And almost no one in this world is blue-color blinded. It means that almost everyone in this world can distinguish blue from other colors and that’s why hyperlink’s default color is blue.</p>\n<p><em>Some statistics that show what color do what men and women get attracted to while shopping</em></p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 655px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 67.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRlwAAABXRUJQVlA4IFAAAAAQAwCdASoUAA0APtFYpEwoJSOiMAgBABoJZwAAetFFnAAA/vGJNjqkrIMBXMqV6p5B/2OxxhzZYo4uA5mVdyssHeT6CA4P651mDZfx97AAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology based on gender\"\n        title=\"Color psychology based on gender\"\n        src=\"/static/cb25947b3235de860a625d6a67f3a7f6/09ab1/Color-psychology-based-on-gender.webp\"\n        srcset=\"/static/cb25947b3235de860a625d6a67f3a7f6/c1dc5/Color-psychology-based-on-gender.webp 650w,\n/static/cb25947b3235de860a625d6a67f3a7f6/09ab1/Color-psychology-based-on-gender.webp 655w\"\n        sizes=\"(max-width: 655px) 100vw, 655px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://blog.kissmetrics.com/how-colors-affect-conversions/\"><strong>Source</strong></a></p>\n<p>Also in another experiment, it was found that men preferred shades and bright colors while women preferred tints and soft colors.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 570px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 729.6491228070175%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRtoCAABXRUJQVlA4IM4CAACwDgCdASoUAJIAPtFYo00oJSMiKbgOQQAaCUAY/kQBvHz8iMbLje1biVaQX5ZKJeNkC0l6NCr7JOahaHGYT0j6u91CX6pKi1SGGLQ/fr/SE8jeqJSGQzCjWkIYgdwzA60yApP3PGBEUqQckkJm8QDOKAs3XPrn/aEcqwejuAAA/vCjjCKHqrQkQTnb3AZRQzfkftJh+fO4KYZf5F4+5rY7XIrBPR7wsPrVnwE8k4tN21EPNI6qZxO1rdNq8U+IC6Nw/48ng4sPEPf34QxIAqzf0gEdWtfHOUBiO4YXAX2qqlU7XhQNwPikPluDWRm7wToOCcQCh1X5M2nybB5yybl9VVBvjqu95X67DWWHMNaNQjlBfRM1wfWe3YNhxAJm3VWHjjJuFTlsVcP9bUw8ydWiSZtIcK8679wjI9yh65attY4tLCmzJHMhhwkm72rjRTa3rAQGhPMiu4MELHKM/NWBdYAP3QHuBYT6JE2usfmsGk9iQ76wQFja4K/dvSmcigYSyoxrgM34atZVaXEapEotHB6FSXFU4+wLoMMyylnl0ZmIoMf9PULd//3VKBV7ErTNbQ+2c1TZFQlR4Ou1KGykcfxXza+FkWWq9oLtojl4/N8Ehj/6bfFNX9TkZTzlxeGg9CWa8SZy38IhqFrhpGLILcbQlZgfSl9VAJBFzA4KYl+gguA36WZGEQtzyc1OxJhq3F6CKNVft0Df7dukDTRMmcmV6TXuX4ls+m82Vdx+ei+C+EOUZJl7vjWbjexzzT2FEmxRoJo76bUyndHrUPk3HXHcUEAd7Ke1ce4ZiyXzEeMcn9i3GUrID9nq3/ObLNpH9BQs9NNUHykbOwsUTfJJGbKKcpBUx0L5GzWmElpW2bESfTx5svS8eRQaHn68H3Lk9wpVqfbDSiQ7NAtgklWLsm4e39FQXSwQqznKNhC4cz9XLvuCQQ7Qi2CjoAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color naming based on gender\"\n        title=\"Color naming based on gender\"\n        src=\"/static/40692f0a28143470dac24f19265f1e66/048c8/Color-naming-based-on-gender-2.webp\"\n        srcset=\"/static/40692f0a28143470dac24f19265f1e66/048c8/Color-naming-based-on-gender-2.webp 570w\"\n        sizes=\"(max-width: 570px) 100vw, 570px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span><strong><a href=\"https://blog.kissmetrics.com/gender-and-color/\">Source</a></strong></p>\n<p>By these data, you can certainly improve your color marketing strategies through color scheme.</p>\n<p>Hence, it may be clear to you that personal decisions to purchase a thing are triggered by one’s own perception of himself or herself. If a person thinks of himself as elegant, attract him with black color. If a person enjoys trust and peace, attract her with blue color. I’m pretty sure that will work for you. That’s why I’m repeating that it is very important to know your target audience.</p>\n<h3 id=\"using-the-prominent-color\" style=\"position:relative;\"><a href=\"#using-the-prominent-color\" aria-label=\"using the prominent color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Using The Prominent Color</strong></h3>\n<p>Now, let’s discuss about the areas on your website where we can use the prominent color. There is a simple thumb rule needed to be followed while using prominent color.</p>\n<p>Only use prominent color on areas which you want to highlight to you customers like you logo, menu tabs, call to actions, and any important information. Here’s, how we do it at LoginRadius.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 650px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 69.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRooAAABXRUJQVlA4IH4AAABQBACdASoUAA4APtFUo0uoJKMhsAgBABoJZwDKAYxi32vdYvQ5xRTTuFKwAP7zeWN9JEkb/3GPsyuatTYXYVoHE6X0PmGzLHOM+Ingt5iFrLk60xN++/hHLRNJrkOL86I2Dj7yi/dIByABxbaehurOllmwULmh61L2BFIgAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Using The Prominent Color\"\n        title=\"Using The Prominent Color\"\n        src=\"/static/80d41621ad73c4b614c1646c7a9435d5/c1dc5/Using-The-Prominent-Color-2.webp\"\n        srcset=\"/static/80d41621ad73c4b614c1646c7a9435d5/c1dc5/Using-The-Prominent-Color-2.webp 650w\"\n        sizes=\"(max-width: 650px) 100vw, 650px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://loginradius.com/\">Source</a></strong> </p>\n<h3 id=\"using-accent-colors\" style=\"position:relative;\"><a href=\"#using-accent-colors\" aria-label=\"using accent colors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Using Accent Colors</strong></h3>\n<p><a href=\"https://www.thespruce.com/what-are-accent-colors-1391698\">Accent colors</a> are the colors used for emphasis. Now, why do you want to use Accent colors when prominent colors are everything you need? Because your website will look boring if you use only a single color all over the place. Hence, to provide it a professional and interesting touch, you need to use accent colors on elements like quotes, subtitles and other information on your website.</p>\n<p>For example, you can use accent colors on secondary information, current menu tab and basically those elements that aren’t the current primary focus but still you want them to be highlighted.</p>\n<p>Also, do not use more than two accent colors on your webpages. It may confuse your prospects. Here’s a simple example to use accent colors on your website:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 660px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 68.15384615384616%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRowAAABXRUJQVlA4IIAAAACwAwCdASoUAA4APtFUo0uoJKMhsAgBABoJYwC+SB461Ju7AH3eAAD+84hzgSyvjKTPDmdOWyJeyQmH1/yOs7b8FRLDy2Co15xjd0z5N1ONBIK5ZYCNJ/mEPjkH8xVRoKpAVjUiMQbmcQpD0K7uXPiB5wesDeZvwVzZ7yHJA9UgAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Using accent colors\"\n        title=\"Using accent colors\"\n        src=\"/static/b60daaa60d1215b45cc0e10233c17e94/cc661/Using-accent-colors.webp\"\n        srcset=\"/static/b60daaa60d1215b45cc0e10233c17e94/c1dc5/Using-accent-colors.webp 650w,\n/static/b60daaa60d1215b45cc0e10233c17e94/cc661/Using-accent-colors.webp 660w\"\n        sizes=\"(max-width: 660px) 100vw, 660px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span> <strong><a href=\"https://loginradius.com/\">Source</a></strong> </p>\n<p>Now, there are two ways to select your color scheme. Pursue a Phd career in color psychology or use these color matching tools to create a color palette (well, hiring a good designer may cost you more).</p>\n<h3 id=\"tools-for-creating-color-palette\" style=\"position:relative;\"><a href=\"#tools-for-creating-color-palette\" aria-label=\"tools for creating color palette permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Tools for Creating Color Palette</strong></h3>\n<h4 id=\"1-coolors\" style=\"position:relative;\"><a href=\"#1-coolors\" aria-label=\"1 coolors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1. Coolors</strong></h4>\n<p>Coolors is an awesome site to generate color schemes. You can generate, store and share your favorite palettes within seconds in Coolors. The tool is available as chrome <a href=\"https://chrome.google.com/webstore/detail/coolors/mgajdijnadmkoapndjaacifihabcnfgd\">extension</a>, an <a href=\"https://creative.adobe.com/addons/products/12124#.WR0z9OuGPIV\">Adobe Add-on</a> and as an <a href=\"https://www.apple.com/itunes/download/\">iOS app</a>.</p>\n<h4 id=\"2-material-ui-colors\" style=\"position:relative;\"><a href=\"#2-material-ui-colors\" aria-label=\"2 material ui colors permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. Material UI Colors</strong></h4>\n<p><a href=\"http://materialuicolors.co/\">Material UI Colors</a> is from panda network which specializes to create color palettes for material designs. You can find a copy-paste option in the app for better color matching process. You can also try <a href=\"http://flatuicolors.com/\">Flat UI Colors</a> (from the house of panda networks) for flat UI themes.</p>\n<h4 id=\"3-adobe-color-cc\" style=\"position:relative;\"><a href=\"#3-adobe-color-cc\" aria-label=\"3 adobe color cc permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. Adobe Color CC</strong></h4>\n<p><a href=\"https://color.adobe.com/create/color-wheel/\">Adobe Color CC</a> is a one-stop palette generator that allows you to generate color palettes with the help of its huge collection of color combinations (these combinations are created and curated by Kuler community).</p>\n<h3 id=\"choosing-the-right-background-color\" style=\"position:relative;\"><a href=\"#choosing-the-right-background-color\" aria-label=\"choosing the right background color permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Choosing the Right Background Color</strong></h3>\n<p>Have you ever picked a wall color? If you have, you can easily relate to the process of selecting the website background.</p>\n<p>When you are about to choose a wall color, you will make sure that the wall color adds to the comfort of the room. Not too strong and not boring as well. Moreover, you will choose different colors for painting a summer cottage and a retail store. Similarly, while choosing the right background color for your website entirely depends on the intent of your website.</p>\n<p>Thus, here I have divided the websites into three types on the basis of their intent.</p>\n<h4 id=\"1-e-commerce-or-content-driven-websites\" style=\"position:relative;\"><a href=\"#1-e-commerce-or-content-driven-websites\" aria-label=\"1 e commerce or content driven websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1. E-commerce or Content Driven Websites</strong></h4>\n<p>You will find that majority of the content driven or e-commerce websites have neutral or white background. The intent of such websites is to promote their products or ideas rather than flashing the background of the website. Hence, the prominent and accent colors provide focus and personality to your website whereas the neutral background keeps your customers focused on your products or content.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 46.30769230769231%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRm4AAABXRUJQVlA4IGIAAACQAwCdASoUAAkAPtFUo0uoJKMhsAgBABoJZwC7AB4/FJSLSSQAAP6yP6NH9MhkQxZIc+SjXPsoauXepWvzui9i1zRWsUSg7xT7NO+cp8Y3j0P92Rf/NDgzncRd7xajDAAAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology for E-commerce or Content Driven Websites\"\n        title=\"Color psychology for E-commerce or Content Driven Websites\"\n        src=\"/static/1b41a8da8baf6881e544e0e6db1d5bde/8b983/Color-psychology-for-E-commerce-or-Content-Driven-Websites.webp\"\n        srcset=\"/static/1b41a8da8baf6881e544e0e6db1d5bde/c1dc5/Color-psychology-for-E-commerce-or-Content-Driven-Websites.webp 650w,\n/static/1b41a8da8baf6881e544e0e6db1d5bde/8b983/Color-psychology-for-E-commerce-or-Content-Driven-Websites.webp 768w,\n/static/1b41a8da8baf6881e544e0e6db1d5bde/e5c51/Color-psychology-for-E-commerce-or-Content-Driven-Websites.webp 1350w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<h4 id=\"2-corporate-websites\" style=\"position:relative;\"><a href=\"#2-corporate-websites\" aria-label=\"2 corporate websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. Corporate Websites</strong></h4>\n<p>Corporate websites are basically built with the intent of promoting services or promoting the brand. In both cases, different kind of colors would be used as the background color.</p>\n<h4 id=\"3-while-promoting-a-brand\" style=\"position:relative;\"><a href=\"#3-while-promoting-a-brand\" aria-label=\"3 while promoting a brand permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. While Promoting a Brand</strong></h4>\n<p>While you are promoting a brand, use your prominent colors as a part of your background. This will improve your brand recognition. You can take a look of our previous example <a href=\"http://www.coca-cola.co.uk/\">Coca-Cola’s</a> site to see how wisely and strongly they have used red on their website.</p>\n<p>In case, you have a bold prominent color, then you can use less intense shades of the prominent colors. Here’s an example of how <a href=\"https://www.cadbury.co.uk/\">Cadbury</a> does it:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 47.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRoAAAABXRUJQVlA4IHQAAABQBACdASoUAAkAPtFWpEuoJKOhsAgBABoJbACdMoSA2CkyKln49Eha462AAP7Zm3hUhFOj9qxgpeqQZxe/NWPCUvg9qTmMldIeBoaTSt1q9VO2M/x72EWptbhJlY5oDhajL/+QHPzu/Bs7LYg0l4NhePgAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology behind Cadbury\"\n        title=\"Color psychology behind Cadbury\"\n        src=\"/static/e7c4176a1b46b1c4603d7c6442425554/8b983/Color-psychology-behind-Cadbury.webp\"\n        srcset=\"/static/e7c4176a1b46b1c4603d7c6442425554/c1dc5/Color-psychology-behind-Cadbury.webp 650w,\n/static/e7c4176a1b46b1c4603d7c6442425554/8b983/Color-psychology-behind-Cadbury.webp 768w,\n/static/e7c4176a1b46b1c4603d7c6442425554/873f3/Color-psychology-behind-Cadbury.webp 1349w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>You can use the above discussed tools to choose different shades of your prominent colors that will go well with your website’s background.</p>\n<h4 id=\"4-while-promoting-a-service-or-product\" style=\"position:relative;\"><a href=\"#4-while-promoting-a-service-or-product\" aria-label=\"4 while promoting a service or product permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>4. While Promoting a Service or Product</strong></h4>\n<p>Now, when you want your services to be the attention grabbers, use light colors for background as it will automatically highlight the content (product) on the page. Our web designers have done a good job highlighting our services.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 47.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRlYAAABXRUJQVlA4IEoAAAAQAwCdASoUAAkAPtFUpEuoJKOhsAgBABoJQAAj3T5YgQAA/v6AhzibjdsfBlA5MYdwZcqKu1/4si+GEf/PNU1avfo/PGUcoc3AAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Color psychology while Promoting a Service or Product\"\n        title=\"Color psychology while Promoting a Service or Product\"\n        src=\"/static/53f846d55ca62c68be9f5ee925f7db23/8b983/Color-psychology-while-Promoting-a-Service-or-Product.webp\"\n        srcset=\"/static/53f846d55ca62c68be9f5ee925f7db23/c1dc5/Color-psychology-while-Promoting-a-Service-or-Product.webp 650w,\n/static/53f846d55ca62c68be9f5ee925f7db23/8b983/Color-psychology-while-Promoting-a-Service-or-Product.webp 768w,\n/static/53f846d55ca62c68be9f5ee925f7db23/e5c51/Color-psychology-while-Promoting-a-Service-or-Product.webp 1350w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://loginradius.com/\"><strong>Source</strong></a></p>\n<h4 id=\"5-creative--stylish-websites\" style=\"position:relative;\"><a href=\"#5-creative--stylish-websites\" aria-label=\"5 creative  stylish websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>5. Creative &#x26; Stylish Websites</strong></h4>\n<p>When it comes to creative or stylish websites (creative, beauty, restaurant, design and fashion industries), you can use any colors in the background of your website. You can design a black background to provide a luxurious look or you can inspire your visitors with a rainbow background. Don’t lose your content’s visibility for the sake of charm on your website. Here’s a great template you can use for your creative website.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 450px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 73.11111111111111%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRn4AAABXRUJQVlA4IHIAAADQAwCdASoUAA8APtFWo0uoJKMhsAgBABoJZQAASrclYUy2/E9UdAAA/vWZ3wT9bv8CnaJO8E2re9WAqCewwtBY8KEqYUYfgJi7hOzeorU913se90NSOVCjyA4CsZnTgnxp3ubmyie3/A2Zz/yXIAARgAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"color psychology for creative &amp; stylish websites\"\n        title=\"color psychology for creative &amp; stylish websites\"\n        src=\"/static/a2771bc5ec6c314582cbcbce51f08abd/8626f/color-psychology-for-creative-stylish-websites.webp\"\n        srcset=\"/static/a2771bc5ec6c314582cbcbce51f08abd/8626f/color-psychology-for-creative-stylish-websites.webp 450w\"\n        sizes=\"(max-width: 450px) 100vw, 450px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://blog.spoongraphics.co.uk/wp-content/uploads/2008/doodle-websites/24.webp?ver=1553881376\"><strong>Source</strong></a></p>\n<p>In a nutshell, the best background for your website will make your content more visible and will render a good feeling to your visitors while browsing. And still if you are struggling with the background color, use a light color for your background. Don’t expect your website to look inspirational enough, however, your content will be noticed.</p>\n<h3 id=\"some-very-common-yet-important-tips\" style=\"position:relative;\"><a href=\"#some-very-common-yet-important-tips\" aria-label=\"some very common yet important tips permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Some Very Common Yet Important Tips</strong></h3>\n<ul>\n<li>Avoid using too much colors on your website. It may confuse your visitors. Moreover, it looks ugly.</li>\n<li>Don’t just use the color because that color is your favorite pick. It may not help the website.</li>\n<li>Do use some white spaces on your website. It improves your SEO, readability and ranks on sites like Google.</li>\n<li>Color is your visitor’s navigation guide. It will navigate them to important parts of your website. So, choose them wisely.</li>\n<li>The finest of designs cannot stop your customers to leave your website if they feel they need to stress out their brains to acquire information. They will look for some other sites that don’t. Hence, keep it simple and informative.</li>\n</ul>\n<h3 id=\"examples-of-some-awesome-websites\" style=\"position:relative;\"><a href=\"#examples-of-some-awesome-websites\" aria-label=\"examples of some awesome websites permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Examples of some awesome websites</strong></h3>\n<p>Here are some websites you can take a look for some inspiration.</p>\n<h4 id=\"1-departika\" style=\"position:relative;\"><a href=\"#1-departika\" aria-label=\"1 departika permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>1.</strong> <a href=\"http://www.departika.com/\"><strong>Departika</strong></a></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.3076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRqIAAABXRUJQVlA4IJYAAAAQBACdASoUAAoAPtFUo0uoJKMhsAgBABoJZACdL1yBg0h6E8PejvNYNAD+4IqvfDVAC6QX9qow91u1noD/Oi8SmfdX2eNbqsz0a/tULf9Za+gNlpWwSPRYbi31ptdIoj/1DZUFBMLXPjfNAR2+HwqDncjrviMP4qMtlYCiOpYyN9pxmCXhNuUiVd4XrKEd4v8SdWKAAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Departika\"\n        title=\"Departika\"\n        src=\"/static/8ebf7a9fbadad19b1e8a2f45e3afb296/8b983/Departika.webp\"\n        srcset=\"/static/8ebf7a9fbadad19b1e8a2f45e3afb296/c1dc5/Departika.webp 650w,\n/static/8ebf7a9fbadad19b1e8a2f45e3afb296/8b983/Departika.webp 768w,\n/static/8ebf7a9fbadad19b1e8a2f45e3afb296/abf82/Departika.webp 1332w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Minimal yet effective</p>\n<h4 id=\"2-magoz\" style=\"position:relative;\"><a href=\"#2-magoz\" aria-label=\"2 magoz permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>2. <a href=\"https://magoz.is/\">Magoz</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 45.230769230769226%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAADQAwCdASoUAAkAPtFUo0uoJKMhsAgBABoJbACdMoADTqHBRGrOEAAA/pG/awOqgGR/N0JY77DhgwTsbTdEP3JyPybAfoHhwFeenugol6ySbEN0MisIPg3ODUCnrM6sXAEwgC64AAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Magoz\"\n        title=\"Magoz\"\n        src=\"/static/16c6f2823e96c29b6b8323a66bb94d21/8b983/Magoz.webp\"\n        srcset=\"/static/16c6f2823e96c29b6b8323a66bb94d21/c1dc5/Magoz.webp 650w,\n/static/16c6f2823e96c29b6b8323a66bb94d21/8b983/Magoz.webp 768w,\n/static/16c6f2823e96c29b6b8323a66bb94d21/9447f/Magoz.webp 1294w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Vibrant</p>\n<h4 id=\"3secretkey\" style=\"position:relative;\"><a href=\"#3secretkey\" aria-label=\"3secretkey permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>3. <a href=\"https://www.secretkey.it/\">SecretKey</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 43.99999999999999%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAACQAwCdASoUAAkAPtFWo0uoJKMhsAgBABoJYwCw7BRIZybp41QgAP67D1+m92IXtjd/Z91Kxa1oBAPaAlXpXmy6dq3hV+zgPJ7YuJkfSjUcIu4tbz50ev8o7rTzUqYMBVnqR9+acAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"SecretKey\"\n        title=\"SecretKey\"\n        src=\"/static/5e1ed28fe80606d9022d0745f6b96d2a/8b983/SecretKey.webp\"\n        srcset=\"/static/5e1ed28fe80606d9022d0745f6b96d2a/c1dc5/SecretKey.webp 650w,\n/static/5e1ed28fe80606d9022d0745f6b96d2a/8b983/SecretKey.webp 768w,\n/static/5e1ed28fe80606d9022d0745f6b96d2a/4d989/SecretKey.webp 1348w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Attractive combination of multiple colors</p>\n<h4 id=\"4softwaremill\" style=\"position:relative;\"><a href=\"#4softwaremill\" aria-label=\"4softwaremill permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>4. <a href=\"https://softwaremill.com/\">Softwaremill</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRm4AAABXRUJQVlA4IGIAAACwAwCdASoUAAoAPtFWo0uoJKMhsAgBABoJQBOgBDvZ/e3KtAlnAADeZtcj5lwLm+yNB01Flj5RGxZu56iKCfS8L9GL/CV/3N+drBwEIYsGM9+7uKNjGEymOxDr6cqdsQQAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Softwaremill\"\n        title=\"Softwaremill\"\n        src=\"/static/6d4bece0017a057d3ed50c1f936b1a52/8b983/Softwaremill.webp\"\n        srcset=\"/static/6d4bece0017a057d3ed50c1f936b1a52/c1dc5/Softwaremill.webp 650w,\n/static/6d4bece0017a057d3ed50c1f936b1a52/8b983/Softwaremill.webp 768w,\n/static/6d4bece0017a057d3ed50c1f936b1a52/ec5ae/Softwaremill.webp 1342w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Beautiful yet elegant</p>\n<h4 id=\"5spektrum\" style=\"position:relative;\"><a href=\"#5spektrum\" aria-label=\"5spektrum permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>5. <a href=\"http://spektrummedia.com/\">Spektrum</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 48.76923076923077%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRn4AAABXRUJQVlA4IHIAAABQBACdASoUAAoAPtFUo0uoJKMhsAgBABoJbACdLwDs/wHmexBelb1lAtTAAP7oT/r+pfUYKAbA2Gy/zzkZeoBi/ppjcqn9zNSj/7KrNsAqVjGtPit7WQN6QIgYjy1m6nWOGNnmHsYuj6ZrIf/tPrfEAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Spektrum\"\n        title=\"Spektrum\"\n        src=\"/static/ca809d0f0147d55dc7f4a5067100a7ef/8b983/Spektrum.webp\"\n        srcset=\"/static/ca809d0f0147d55dc7f4a5067100a7ef/c1dc5/Spektrum.webp 650w,\n/static/ca809d0f0147d55dc7f4a5067100a7ef/8b983/Spektrum.webp 768w,\n/static/ca809d0f0147d55dc7f4a5067100a7ef/41c4d/Spektrum.webp 1323w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Wise usage of neon colors to give it modern touch</p>\n<h4 id=\"6enterprise-england\" style=\"position:relative;\"><a href=\"#6enterprise-england\" aria-label=\"6enterprise england permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>6. <a href=\"http://enterpriseengland.org.uk/\">Enterprise England</a></strong></h4>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 44.15384615384615%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAACQAwCdASoUAAkAPtFWpEuoJKOhsAgBABoJYwAAW52Xi24lrhkAAP7gCspQ4jihlDxcBR6V8f/16aqMLHyWA2ge1CJuOSYfVW92wofU1GiuOn5Roc27tk2J0ihjxj7j0jCclkJxAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Enterprise England\"\n        title=\"Enterprise England\"\n        src=\"/static/b23c4eba4a31515f4289309e97aabe6c/8b983/Enterprise-England.webp\"\n        srcset=\"/static/b23c4eba4a31515f4289309e97aabe6c/c1dc5/Enterprise-England.webp 650w,\n/static/b23c4eba4a31515f4289309e97aabe6c/8b983/Enterprise-England.webp 768w,\n/static/b23c4eba4a31515f4289309e97aabe6c/4d989/Enterprise-England.webp 1348w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Specialty: Beautiful color combination</p>\n<p>While picking up a color scheme, you should always put your audience first and not your favorite color. Choose colors to make a long lasting connection and that’s how you will stand out from the competition. And although, choosing color scheme is an act of organization, objective and matching, don’t get daunted from adding different colors to your website. Have fun and let your content shine on your webpages.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"May 19, 2017","updated_date":null,"description":"Don't Know Which Colors will suit your Website? Here's the Complete Guide about Color Scheme that will help you choose the best color palette for your Site.","title":"A Complete Color Scheme Guide For Your Website","tags":null,"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.2578616352201257,"src":"/static/ec74cefbbdd2d4daf4cc8d9ea25ab3c7/58556/A-Complete-Color-Scheme-Guide-For-Your-Website.webp","srcSet":"/static/ec74cefbbdd2d4daf4cc8d9ea25ab3c7/61e93/A-Complete-Color-Scheme-Guide-For-Your-Website.webp 200w,\n/static/ec74cefbbdd2d4daf4cc8d9ea25ab3c7/1f5c5/A-Complete-Color-Scheme-Guide-For-Your-Website.webp 400w,\n/static/ec74cefbbdd2d4daf4cc8d9ea25ab3c7/58556/A-Complete-Color-Scheme-Guide-For-Your-Website.webp 800w,\n/static/ec74cefbbdd2d4daf4cc8d9ea25ab3c7/e30b5/A-Complete-Color-Scheme-Guide-For-Your-Website.webp 1000w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Rakesh Soni","github":"oyesoni","avatar":"rakesh-soni.webp"}}}},{"node":{"excerpt":"In this highly competitive job world, it is very important to sell yourself through an eye-catching resume. And developing a visual resume…","fields":{"slug":"/growth/spice-up-your-resume-create-visual-one/"},"html":"<p>In this highly competitive job world, it is very important to sell yourself through an eye-catching resume. And developing a visual resume can provide you the chance to create a lasting first impression. But what is a Visual Resume and why do you need one? Here is a complete article dedicated to these questions and a tutorial on how to create a great visual resume for yourself. </p>\n<h3 id=\"what-is-a-visual-resume\" style=\"position:relative;\"><a href=\"#what-is-a-visual-resume\" aria-label=\"what is a visual resume permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>What is a Visual Resume?</strong></h3>\n<p>Before we go further into the topic, let’s talk what a visual resume is and how is it different from the traditional resume.</p>\n<p>A visual resume is an appealing piece of information which looks versatile and describe yourself in the same way as done by its traditional counterpart. Some people turn their traditional resumes into powerpoint presentations or some take it to the next level by converting it into a video or an interactive webpage. In a nutshell, a visual resume can be anything other than a traditional text document. </p>\n<h3 id=\"why-use-visual-resumes\" style=\"position:relative;\"><a href=\"#why-use-visual-resumes\" aria-label=\"why use visual resumes permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Why use Visual Resumes?</strong></h3>\n<p>Visual resumes are welcomed as the next thing in the recruitment world. Still many people do not use them for their job hunting. This means that if you use them, you still have chance to stick out a mile from the crowd in the swarm of traditional resumes. You can beat the fierce competition and become an instant favorite for your potential employers. Moreover, visual resumes allow employers to learn about their potential employees at a better pace. Thus, the chances of them looking at your traditional resume, your blog or giving you a call will be more.</p>\n<p><strong>Note:-</strong> Make sure that the organization you are applying does not have an issue with visual resume or else it will affect you negatively. </p>\n<h3 id=\"some-examples\" style=\"position:relative;\"><a href=\"#some-examples\" aria-label=\"some examples permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Some Examples</strong></h3>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 293.07692307692304%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRoABAABXRUJQVlA4IHQBAACQCACdASoUADsAPtFip0+oJaMiKBgJWQAaCUAZIQHY+Ph8OxTUXBEyWXxap5jazQhd75FPRmNRqR7N1hqJWow52xAXABQ4EChzdMaeAAD+0Dt4WKTNyoYN8jLv28cCHj45MZLHUBgZ8W9+JHm0g5Qt5Dbg3m3AdFpr9kxb77OIyRPrdkTkHqOrZTAe1UsLFJU1dP7QXgYK4N6lNkaMifxWVE1i1u6POD5x0xu1C2pm+afe6+2gzwRlJ4maF0UhgWhUUGZZkJtZhokHzVl8LWyRTNL9YfIcYgOuXG0hKrc3tINmELPLGp0OLx5Os1wRaQZDJGPYtpUZ+fxHAbnX6+vRKhZ6dU1b2TnoOynSNf/6Pcx3I7JW3R+LDoUOf1GrcAqBIWpTzJQM6fDF7ejKvdVWHa7g5Y8TPZGblJLZVM00G6tWu1EN6iJDASHQBVwT0+2jbJTFfwlP/hWBOPE0RHm/IwGvmVlJodjG6Uo/wwrmQC+AAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Virtual resume example 1\"\n        title=\"Virtual resume example 1\"\n        src=\"/static/4b4d715890773cf8d7f02d0b42e61d22/8b983/Virtual-resume-example-1.webp\"\n        srcset=\"/static/4b4d715890773cf8d7f02d0b42e61d22/c1dc5/Virtual-resume-example-1.webp 650w,\n/static/4b4d715890773cf8d7f02d0b42e61d22/8b983/Virtual-resume-example-1.webp 768w,\n/static/4b4d715890773cf8d7f02d0b42e61d22/7f403/Virtual-resume-example-1.webp 1400w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://www.behance.net/gallery/26611697/Curriculum-Vitae\">Source</a></strong></p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 653px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 129.23076923076923%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRr4AAABXRUJQVlA4ILIAAADQBACdASoUABoAPtFcp04oJSOiKAqpABoJZQDH5BEd1Qf/QjQ9p9nRRsP7tkNcgAD977HUPmELIWuGkjBVdkfpt8Er+2Jr0TaQt/L9ncuA9Srmfzm4wY4WUiBtGOJm1yKVco1HZgnlv2x3Ox2mYS2jt0bfYzoDPUJ6sYi8QRnzSmOx/gRpB/9T5JjImTpflDoH1bY7y/hrKrxAGXTPSBEZ4AqO1m5PygCC1tFjDx/54AAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Virtual resume example 3\"\n        title=\"Virtual resume example 3\"\n        src=\"/static/9725ea19a3ade23e157b7db84a6499ee/d0839/Virtual-resume-example-3.webp\"\n        srcset=\"/static/9725ea19a3ade23e157b7db84a6499ee/c1dc5/Virtual-resume-example-3.webp 650w,\n/static/9725ea19a3ade23e157b7db84a6499ee/d0839/Virtual-resume-example-3.webp 653w\"\n        sizes=\"(max-width: 653px) 100vw, 653px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://biginterview.com/wp-content/uploads/2013-6-18-infographic-resume-3.webp?ver=1553881376\">Source</a></strong> </p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 554px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 77.25631768953069%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRp4AAABXRUJQVlA4IJIAAABQBACdASoUAA8APtFUo0uoJKMhsAgBABoJbACdIIpJ/gPHWpbKW+OlECbAAP7tYjCBH9SsqEwjYAkZ/2r8hbr3RY+oFlfAVS7BhAh8Ud2NRhAmSXMQeuNKuxM/9LrtxvevOyhwbQZhbr58XurSAlQCRdCn8zFrY10GRF26rxAfN04Z9U6Mnwx2+WxuwlXf8QAAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Virtual resume example 4\"\n        title=\"Virtual resume example 4\"\n        src=\"/static/275cf024dc48b9a425b90c161ec17848/5e3e0/Virtual-resume-example-4.webp\"\n        srcset=\"/static/275cf024dc48b9a425b90c161ec17848/5e3e0/Virtual-resume-example-4.webp 554w\"\n        sizes=\"(max-width: 554px) 100vw, 554px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><strong><a href=\"https://staticblog.virtualvocations.com/2012/12/4_PERSONALITY.webp?ver=1553881376\">Source</a></strong></p>\n<h3 id=\"how-to-make-a-visual-resume-using-adobe-photoshop\" style=\"position:relative;\"><a href=\"#how-to-make-a-visual-resume-using-adobe-photoshop\" aria-label=\"how to make a visual resume using adobe photoshop permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>How to Make a Visual Resume (using Adobe Photoshop)</strong></h3>\n<ol>\n<li>Open Photoshop and open a new document through selecting <strong><em>File>New.</em></strong></li>\n<li>Click the <strong>Presets</strong> drop down menu and choose <strong>U.S paper</strong>. Choose the standard size of the paper: 8.5 * 11 inches.</li>\n<li>Select your preferred background. It is recommended to select a simple background which is covered by bold stripes at the side or top.</li>\n<li>Now you can enter the text through Type tool. Put the cursor in the bounding box and start type your resume. Use different fonts, boldness, sizes and colors to highlight your data to make them appealing and readable. Hence, your eye should move smoothly through the resume from point to another. You can give small fonts to the lines in between but they should be readable.</li>\n<li>Afterwards, check your content thrice. Check for any typo errors, grammatical errors or any flaws in the flow of the content. As there are good chances of a visual resume getting spoilt, you should be extra vigilant while making one. Your resume should be visually well balanced. To analyze your resume, split the resume into four different quadrants. Now, analyze the black-white balance in all the four quadrants and make sure that they are even.</li>\n<li>Now, export resume. Open <strong>File</strong> > Choose <strong>Save as</strong> > Choose <strong>Select as PDF.</strong> You can reduce the size of your visual resume by selecting <strong>Minimum File Size</strong> from the preset so that you can easily email them to your potential employers. You can select the version of PDF to increase compatibility.</li>\n</ol>\n<p><em>Note:- The steps are written according to Adobe Photoshop CS6.</em></p>\n<p>You can also use Canva to create a stunning resume. There are many templates available in Canva which are well suited for visual resumes. Here’s an example which I carved out from my favorite tool Canva:-</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 129.3846153846154%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRroAAABXRUJQVlA4IK4AAABwBACdASoUABoAPtFWpkwoJKOiKA1RABoJYgCdAA36hwevKIjWq7BCn6czYAD+sB1KwlE/cG/BzfwtNBajFQkdjUctiNIJzQYevAVTf2EpgG/Li9ItvGCPKjHXzeQmRM7SyYU455HlXN3wW6bU72Xf79kIyU0tClMWXiaZvPuPBQEJvX2utZf0qUr9G4inho1Cv8Si7gbt2iP0UtEDOg9uAsrbkpDEBtVsiwe+gAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Creating virtual resume with Canva\"\n        title=\"Creating virtual resume with Canva\"\n        src=\"/static/bbef3d5b6de27db0a017505ae056121a/8b983/Creating-virtual-resume-with-Canva.webp\"\n        srcset=\"/static/bbef3d5b6de27db0a017505ae056121a/c1dc5/Creating-virtual-resume-with-Canva.webp 650w,\n/static/bbef3d5b6de27db0a017505ae056121a/8b983/Creating-virtual-resume-with-Canva.webp 768w,\n/static/bbef3d5b6de27db0a017505ae056121a/79303/Creating-virtual-resume-with-Canva.webp 816w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p>Well, you can also use these FREE tools to have a seamless resume creation experience:-</p>\n<ul>\n<li><a href=\"https://www.kickresume.com/\">Kickresume</a></li>\n<li><a href=\"http://vizualize.me/\">Vizualize.me</a></li>\n<li><a href=\"https://cvease.com/\">CV Ease builder</a></li>\n<li><a href=\"https://atbox.io/\">Atbox</a></li>\n<li>Slash CV</li>\n<li><a href=\"https://www.hashtagcv.com/\">Hashtag CV</a></li>\n</ul>\n<p>Create your own resume and share your experience in the comments below.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"May 15, 2017","updated_date":null,"description":"This year, ditch your regular resume! Spice up your resume by creating a visual one. Read on the article to find out how.","title":"Spice Up Your Resume: Create a Visual One","tags":null,"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7699115044247788,"src":"/static/3dd337d588255ddddef285de992aed6d/58556/Spice-up-your-resume-Create-a-virtual-one.webp","srcSet":"/static/3dd337d588255ddddef285de992aed6d/61e93/Spice-up-your-resume-Create-a-virtual-one.webp 200w,\n/static/3dd337d588255ddddef285de992aed6d/1f5c5/Spice-up-your-resume-Create-a-virtual-one.webp 400w,\n/static/3dd337d588255ddddef285de992aed6d/58556/Spice-up-your-resume-Create-a-virtual-one.webp 800w,\n/static/3dd337d588255ddddef285de992aed6d/99238/Spice-up-your-resume-Create-a-virtual-one.webp 1200w,\n/static/3dd337d588255ddddef285de992aed6d/7c22d/Spice-up-your-resume-Create-a-virtual-one.webp 1600w,\n/static/3dd337d588255ddddef285de992aed6d/25f09/Spice-up-your-resume-Create-a-virtual-one.webp 1920w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Navanita Devi","github":null,"avatar":null}}}},{"node":{"excerpt":"Boosting your customer list and increasing leads are two vital business processes which can be done through creating user-friendly signup…","fields":{"slug":"/growth/sign-up-forms-best-practices/"},"html":"<p>Boosting your customer list and increasing leads are two vital business processes which can be done through creating user-friendly signup forms. Well, Hipmunk could have never reached its 130,000 visitors per month mark or Netflix could have never made <a href=\"https://www.statista.com/statistics/258321/number-of-netflix-subscribers-by-type/\">49+ million</a> US subscribers if they haven’t built up those brilliant signup forms. But many businesses still don’t take enough pain to build signup forms. They generally settle for stereotype forms and afterwards complain about their number of leads.</p>\n<p><strong>Wake up call!</strong> Build your own simple yet effective signup forms by following these simple practices to improve your lead generation statistics.</p>\n<p><em>Your goal is to acquire leads!</em></p>\n<p><strong>Before we move into the details, here’s why people run away from signup forms:-</strong></p>\n<ul>\n<li>They think that you are spammers</li>\n<li>They think that signing up with social networking sites may spam their friends and followers</li>\n<li>They do not have an option to delete their accounts when they are done with their business</li>\n<li>They don’t want to share their personal information with you.</li>\n<li>Too much fields in your forms</li>\n<li>Asking banking details for a free trial</li>\n<li>Your service or product seems less appealing to them</li>\n</ul>\n<p><strong><em>Now, let’s dig into the best practices to follow while re-defining your Signup forms</em></strong></p>\n<h3 id=\"dont-hide-your-form-below-the-fold\" style=\"position:relative;\"><a href=\"#dont-hide-your-form-below-the-fold\" aria-label=\"dont hide your form below the fold permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Don’t Hide Your Form Below The Fold</strong></h3>\n<p>Engaged time generally declines till the time the prospect hits below the fold of your page. Hence, make it a practice to introduce them above the fold. Other than forms, you can also introduce CTAs and other important elements on your page. Thus, you can acquire utmost exposure to your business prospects that can help you to convert maximum leads. For example, if you are selling a software, just introduce your product with an eye-catching title, some images and a call -to-action button. This layout should crack a deal for you. Modifying the Unbounce’s page layout and placing plans with a call-to-action button <a href=\"https://econsultancy.com/blog/63139-six-useful-case-studies-on-where-to-place-your-cta-to-maximise-conversions\">increased their conversion to 41%</a>.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 46.30769230769231%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnYAAABXRUJQVlA4IGoAAACwAwCdASoUAAkALplotFoiqCgoCACYSgDCgEWUd//PiAKrV/tAAAD++dOk/I8xntnnI/YNiUFT7fws7/1YfU3zpi8G0xzv9bhSTK/b0G+pDaYaodquUm6NBtpFIx1i72Q9UjCF7+8jEAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Above the fold registration form\"\n        title=\"Above the fold registration form\"\n        src=\"/static/3606e87f8b6cdd6f2bf99f92ce931d20/8b983/Above-the-fold-registration-form.webp\"\n        srcset=\"/static/3606e87f8b6cdd6f2bf99f92ce931d20/c1dc5/Above-the-fold-registration-form.webp 650w,\n/static/3606e87f8b6cdd6f2bf99f92ce931d20/8b983/Above-the-fold-registration-form.webp 768w,\n/static/3606e87f8b6cdd6f2bf99f92ce931d20/18bdb/Above-the-fold-registration-form.webp 1345w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<h3 id=\"lessen-your-number-of-fields\" style=\"position:relative;\"><a href=\"#lessen-your-number-of-fields\" aria-label=\"lessen your number of fields permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Lessen your Number of Fields</strong></h3>\n<p>Fields in a signup form act like friction to the process of conversion. Thus, decreasing the number of fields in your forms will act like a friction buster and will increase your conversion rates. Here are some statistics:-</p>\n<ul>\n<li>A five-field form advances in <a href=\"http://www.marketingexperiments.com/blog/internet-marketing-strategy/lead-generation-testing-form-field-length-reduces-cost-per-lead-by-10-66.html\">conversion rates by 34%</a> when compared to a 9-field form.</li>\n<li>A contact form increased its <a href=\"https://unbounce.com/conversion-rate-optimization/how-to-optimize-contact-forms/\">conversions rates by 120%</a> when it scaled down its number of fields from 11 to 4.</li>\n</ul>\n<p>Therefore, points which you need to remember:-</p>\n<ul>\n<li>Remove all optional fields</li>\n<li>Ask only relevant questions (do not ask for address, fax or phone number unless you are going to send them a product)</li>\n</ul>\n<p>In the previous image, Semrush does a great job by keeping just two fields in the sign up form.</p>\n<h3 id=\"trade-your-email-signup\" style=\"position:relative;\"><a href=\"#trade-your-email-signup\" aria-label=\"trade your email signup permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Trade Your Email Signup</strong></h3>\n<p>There is a golden rule when you want your prospects to perform an email signup- “ ask less but provide as good as you can”. It means that you need to trade your idea of an email signup with a commodity or a service. For example, if your prospect is on your website to download a file, ask them to provide their email address and a couple of data in return. Now, that’s a successful transaction!</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 600px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 55.333333333333336%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRmQAAABXRUJQVlA4IFgAAADwAwCdASoUAAsAPtFWo0uoJKMhsAgBABoJQBibBDwqn1SKZNLZUQAAAP7nyhh1ZUaZAnIxWKbUGJdIzn6eNBdywFsJqnyyO3LvKHVJ+MXVjQ+XowLtVAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Trade Your Email Signup while registration\"\n        title=\"Trade Your Email Signup while registration\"\n        src=\"/static/dd1e637bcaad99f34ca6e2309ad96141/e88ff/Trade-Your-Email-Signup-while-registration.webp\"\n        srcset=\"/static/dd1e637bcaad99f34ca6e2309ad96141/e88ff/Trade-Your-Email-Signup-while-registration.webp 600w\"\n        sizes=\"(max-width: 600px) 100vw, 600px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://help.aweber.com/hc/en-us/article_attachments/211926128/227394387_step01.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"have-an-effective-cta\" style=\"position:relative;\"><a href=\"#have-an-effective-cta\" aria-label=\"have an effective cta permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Have an Effective CTA</strong></h3>\n<p>I still wonder why <a href=\"http://contentmarketinginstitute.com/2013/09/small-businesses-website-content-calls-to-action/\">72% of B2B marketers</a> do not think of placing CTAs on their internal pages. Hence, while you are placing a CTA on your website, ensure to make it eye-catching. This will assist to change your bounce rates into conversion rates. Moreover, replace “Submit” buttons with some buttons that perform an action. For example, use “<strong>Start your Free Trial</strong>” or “<strong>Start Bookmarking</strong>” instead of “Submit”.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 52.615384615384606%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRmgAAABXRUJQVlA4IFwAAACwAwCdASoUAAsAPtFUpEuoJKOhsAgBABoJaQAAYfEQOFHYUkr4gAD+x4I8ca6jH/xFIfglNrSx7AXRagzwbqyKqsEWlLdgMlDdxRZmaf1hOUx205i929rGaJeAAA=='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Have an Effective CTA in registration form\"\n        title=\"Have an Effective CTA in registration form\"\n        src=\"/static/e15272741451898504c9ac83c160b560/8b983/Have-an-Effective-CTA-in-registration-form.webp\"\n        srcset=\"/static/e15272741451898504c9ac83c160b560/c1dc5/Have-an-Effective-CTA-in-registration-form.webp 650w,\n/static/e15272741451898504c9ac83c160b560/8b983/Have-an-Effective-CTA-in-registration-form.webp 768w,\n/static/e15272741451898504c9ac83c160b560/ad7c3/Have-an-Effective-CTA-in-registration-form.webp 2054w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://blog.aweber.com/wp-content/uploads/2016/08/marie-forleo-sign-up-form-cta.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"show-your-user-base\" style=\"position:relative;\"><a href=\"#show-your-user-base\" aria-label=\"show your user base permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Show Your User Base</strong></h3>\n<p>Giving a proof for your social acceptance is a good technique to attract more customers. Look at the different companies who have endorsed themselves with this technique. You can also add some client testimonials to support your brand.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 68.46153846153847%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAACwAwCdASoUAA4APtFUo0uoJKMhsAgBABoJYwAAXiH1FpDCn2ScAAD+9Oc0ZIcMS6+sKfjtpWlmrVvU7Ku1+nXzgZ7bjz+z/YC0Rn+FIjAOCr3apudEYU9fYWdq9Hksm2kq/9AAAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Show Your User Base on registration page\"\n        title=\"Show Your User Base on registration page\"\n        src=\"/static/30cdec5169f5b1f7d1ccfc1728a088ce/8b983/Testimonial-on-registration-page.webp\"\n        srcset=\"/static/30cdec5169f5b1f7d1ccfc1728a088ce/c1dc5/Testimonial-on-registration-page.webp 650w,\n/static/30cdec5169f5b1f7d1ccfc1728a088ce/8b983/Testimonial-on-registration-page.webp 768w,\n/static/30cdec5169f5b1f7d1ccfc1728a088ce/4a41d/Testimonial-on-registration-page.webp 950w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://signup.ballparkapp.com/\">Source</a></p>\n<h3 id=\"show-that-you-are-not-a-spammer\" style=\"position:relative;\"><a href=\"#show-that-you-are-not-a-spammer\" aria-label=\"show that you are not a spammer permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Show That You are not a Spammer</strong></h3>\n<p>It will increase your credibility as a service provider and more people will signup for your service. Thus, add your privacy policy in your signup page with a statement like- ‘We will never spam you’</p>\n<h3 id=\"follow-the-single-column-rule\" style=\"position:relative;\"><a href=\"#follow-the-single-column-rule\" aria-label=\"follow the single column rule permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Follow The Single Column Rule</strong></h3>\n<p>Here is a study that shows how <a href=\"https://www.cxpartners.co.uk/our-thinking/web_forms_design_guidelines_an_eyetracking_study/\">applying single column</a> can work better.</p>\n<h3 id=\"add-white-space-to-your-page\" style=\"position:relative;\"><a href=\"#add-white-space-to-your-page\" aria-label=\"add white space to your page permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Add White Space To Your Page</strong></h3>\n<p>It can be very difficult for a visitor to focus on CTAs on an overloaded background. Therefore, to increase your click-through rates and improve readability and scannability, get inspired from Google and add some white space to your page. Adding white space may increase the time to read but will improve your reader’s understandability. Hence, adding some white spaces and placing CTAs in relevant areas will encourage the people to fill your signup forms.</p>\n<h3 id=\"design-matters\" style=\"position:relative;\"><a href=\"#design-matters\" aria-label=\"design matters permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Design Matters</strong></h3>\n<p>People are attracted to beautiful webpages. Here are some awesome examples for great designs that can inspire you to try something good as well with your forms.</p>\n<h3 id=\"test-your-forms\" style=\"position:relative;\"><a href=\"#test-your-forms\" aria-label=\"test your forms permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Test Your Forms</strong></h3>\n<p><em>Perform A/B testing.</em></p>\n<p>Intuition, experience and expertise are certainly required for page positioning, nothing can replace testing. So, decide the appearance of your form with testing.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 768px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 66.92307692307693%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRmYAAABXRUJQVlA4IFoAAADwAwCdASoUAA0APtFWpEuoJKOhsAgBABoJZwAAXKdZUH3XmJjg/2wAAP7yK0uSXdeIy/OtWrYowsc02a4aYx/IQoWpW/lKZeUWZYnNqCzc+P7PCXkSMsAAAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Test Your Forms with AB testing\"\n        title=\"Test Your Forms with AB testing\"\n        src=\"/static/c6b39ba607b911f5eef168cc4cbad783/8b983/Test-Your-Forms-with-AB-testing.webp\"\n        srcset=\"/static/c6b39ba607b911f5eef168cc4cbad783/c1dc5/Test-Your-Forms-with-AB-testing.webp 650w,\n/static/c6b39ba607b911f5eef168cc4cbad783/8b983/Test-Your-Forms-with-AB-testing.webp 768w,\n/static/c6b39ba607b911f5eef168cc4cbad783/385bc/Test-Your-Forms-with-AB-testing.webp 810w\"\n        sizes=\"(max-width: 768px) 100vw, 768px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<h3 id=\"try-out-templates-like-mad-libs\" style=\"position:relative;\"><a href=\"#try-out-templates-like-mad-libs\" aria-label=\"try out templates like mad libs permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Try Out Templates like Mad Libs</strong></h3>\n<p>Try out <a href=\"http://www.madlibs.com\">Mad Libs</a>. It is a template word game where one hints another player by providing him a list of words and he has to fill in the blanks which is usually a funny one. It is an interesting method to engage your visitors to give away their information. These are the <a href=\"http://www.lukew.com/ff/entry.asp?1007\">results</a> from Vast.com which performed A/B testing with the templates.</p>\n<p><img src=\"/94f4edae5e9afc38362233e69995eb53/Try-Out-Templates-like-Mad-Libs.gif\" alt=\"Try Out Templates like Mad Libs\"></p>\n<p><a href=\"http://static.lukew.com/vast_contactdealer.gif?ver=1553881376\">Source</a></p>\n<h3 id=\"add-user-friendly-features-to-your-forms\" style=\"position:relative;\"><a href=\"#add-user-friendly-features-to-your-forms\" aria-label=\"add user friendly features to your forms permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Add User Friendly Features to Your Forms</strong></h3>\n<p>Don’t be so choosy about the characteristics of your fields. For example, if the field holding phone number does not require any dashes or blank spaces, let your users enter the phone number in the manner they prefer to. Similarly, while entering dates, give them a choice to enter the dates in the way they want. For example, placing ‘/’ or ‘.’ between numbers or entering ‘11’ instead of ‘2011’. Also, add a calendar to your forms. Implementing these ideas will help you to create a more user friendly form.</p>\n<p>Many websites ask for passwords over again just for the sake that other websites have done it earlier. The sole purpose of asking passwords again is to prevent typo errors. Thus, a more user friendly method to do it is giving an option to view the password.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 506px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 86.36363636363636%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRmYAAABXRUJQVlA4IFoAAADwAwCdASoUABEAPtFao02oJSMiKA1RABoJQBl8Aig+TOe39AwT+muAAP7zw+uBVTPkrNzOoodcLdTfJLnc3fflX1e1hn5oYpBCg2gZTuKLB+cN23kLCwgAAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Add User Friendly Features to Your Forms\"\n        title=\"Add User Friendly Features to Your Forms\"\n        src=\"/static/30a5d97cb6e35f383563c38e3fe8e3eb/6b97b/Add-User-Friendly-Features-to-Your-Forms.webp\"\n        srcset=\"/static/30a5d97cb6e35f383563c38e3fe8e3eb/6b97b/Add-User-Friendly-Features-to-Your-Forms.webp 506w\"\n        sizes=\"(max-width: 506px) 100vw, 506px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://i.stack.imgur.com/pO6KD.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"use-auto-fill-fields-instead-of-drop-down-lists\" style=\"position:relative;\"><a href=\"#use-auto-fill-fields-instead-of-drop-down-lists\" aria-label=\"use auto fill fields instead of drop down lists permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Use Auto-fill Fields instead of Drop Down Lists</strong></h3>\n<p>Drop down lists are not a good option when the list of choices are too long, eg:- country selector. Instead use auto-fill fields.</p>\n<p><em>Don’t do this</em></p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 320px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 68.75%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRnIAAABXRUJQVlA4IGYAAAAQBACdASoUAA4APtFWo0uoJKMhsAgBABoJZwCsEf/gPI827izrYVpUgAD+1ev16l4lHl7P/UUgg1lEDMFbzVyTxz0jsDcd6gEQqVspLlwk1Fk+GSxQi0qB0LgJQuretR4Pu2F8GAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Use Auto-fill Fields instead of Drop Down Lists\"\n        title=\"Use Auto-fill Fields instead of Drop Down Lists\"\n        src=\"/static/9c4d56e503be757a6f83d1ae03c03bcc/4c812/Use-Auto-fill-Fields-instead-of-Drop-Down-Lists.webp\"\n        srcset=\"/static/9c4d56e503be757a6f83d1ae03c03bcc/4c812/Use-Auto-fill-Fields-instead-of-Drop-Down-Lists.webp 320w\"\n        sizes=\"(max-width: 320px) 100vw, 320px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://i1.wp.com/conversionxl.com/wp-content/uploads/2011/12/dropdown.webp?ver=1553881376\">Source</a></p>\n<p>Instead,</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 300px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 44.33333333333333%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRkwAAABXRUJQVlA4IEAAAAAwAwCdASoUAAkAPtFUo0uoJKMhsAgBABoJaQAAXE7FQE6AAP7tbBarh/G0h7wk95iaB4ud6y+BdUvC9ka2AgAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Use Auto-fill Fields instead of Drop Down Lists\"\n        title=\"Use Auto-fill Fields instead of Drop Down Lists\"\n        src=\"/static/c36c0b2809bd0a76440acbfe3501daad/c85cb/Use-Auto-fill-Fields-instead-of-Drop-Down-Lists-1.webp\"\n        srcset=\"/static/c36c0b2809bd0a76440acbfe3501daad/c85cb/Use-Auto-fill-Fields-instead-of-Drop-Down-Lists-1.webp 300w\"\n        sizes=\"(max-width: 300px) 100vw, 300px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://www.smashingmagazine.com/wp-content/uploads/2011/03/signup4.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"field-width--submit-button-width\" style=\"position:relative;\"><a href=\"#field-width--submit-button-width\" aria-label=\"field width  submit button width permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Field Width = Submit Button Width</strong></h3>\n<p>Small CTA buttons are poor implementations and can look less effective from the users point of view. Hence, it is recommended to equal the width of submit button with the width of the adjacent input field.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 580px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 55.51724137931034%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRmQAAABXRUJQVlA4IFgAAADQAwCdASoUAAsAPtFUo0uoJKMhsAgBABoJagCdMoR3ACZijtNt8AAA/tOfd8gBBCJCd+0HFtzmj51OUgOzFI05OZMATbsR13t5fHPmtCbMYnJYVynJAAAA'); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Field Width = Submit Button Width\"\n        title=\"Field Width = Submit Button Width\"\n        src=\"/static/4c9de141c3582d0fbb900208a058cc14/4fac6/Field-Width-Submit-Button-Width.webp\"\n        srcset=\"/static/4c9de141c3582d0fbb900208a058cc14/4fac6/Field-Width-Submit-Button-Width.webp 580w\"\n        sizes=\"(max-width: 580px) 100vw, 580px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"https://codropspz-tympanus.netdna-ssl.com/codrops/wp-content/uploads/2012/10/CustomLoginForms_02.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"please-dont-use-captchas\" style=\"position:relative;\"><a href=\"#please-dont-use-captchas\" aria-label=\"please dont use captchas permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>Please! Don’t use Captchas</strong></h3>\n<p>Adding Captchas are new methods to put someone to eternal torture. I know that websites consider them as a shield against spammers. But, there are other smart ways to stop spamming.</p>\n<p>‘<a href=\"http://haacked.com/archive/2007/09/11/honeypot-captcha.aspx/\">Honeypot captcha technique</a>’ is an anti-spam technique which helps your website to identify spammers by hiding a field in your form that is only visible to spamming tools. Hence, if that field is checked or filled, you can easily confirm it as spam. Still, if you want captchas to be a part of your form, try out some fun questions that prove the user is a human. For example, ask simple math calculations like ‘2+7=’.</p>\n<p><span\n      class=\"gatsby-resp-image-wrapper\"\n      style=\"position: relative; display: block; margin-left: auto; margin-right: auto; max-width: 300px; \"\n    >\n      <span\n    class=\"gatsby-resp-image-background-image\"\n    style=\"padding-bottom: 67.33333333333333%; position: relative; bottom: 0; left: 0; background-image: url('data:image/webp;base64,UklGRooAAABXRUJQVlA4IH4AAAAQBACdASoUAA0APtFUo0uoJKMhsAgBABoJZwAD49nacG90OfnZsRPQAAD+nDtWZa1gBiGunjXH+WArSyV6x4VqcJHPP8o4wsensQKuQ3TQ5dZlfShlgCdR5c87Eh8+Q+doBgvwTc2gYU+UemEbu1fdwTDaQKn/bDROY8NAAAA='); background-size: cover; display: block;\"\n  ></span>\n  <img\n        class=\"gatsby-resp-image-image\"\n        alt=\"Don’t use Captchas\"\n        title=\"Don’t use Captchas\"\n        src=\"/static/0ecbc83efcbab2eb8defe872dafdb2a2/c85cb/Don%E2%80%99t-use-Captchas.webp\"\n        srcset=\"/static/0ecbc83efcbab2eb8defe872dafdb2a2/c85cb/Don%E2%80%99t-use-Captchas.webp 300w\"\n        sizes=\"(max-width: 300px) 100vw, 300px\"\n        style=\"width:100%;height:100%;margin:0;vertical-align:middle;position:absolute;top:0;left:0;\"\n        loading=\"lazy\"\n      />\n    </span></p>\n<p><a href=\"http://carlofontanos.com/wp-content/uploads/2014/04/Math_Captcha-300x202.webp?ver=1553881376\">Source</a></p>\n<h3 id=\"its-all-about-user-comfort-and-trust\" style=\"position:relative;\"><a href=\"#its-all-about-user-comfort-and-trust\" aria-label=\"its all about user comfort and trust permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a><strong>It’s all about user comfort and trust</strong></h3>\n<p>User’s comfort and security is the key to design a great signup form. Balancing your security parameters and making your process transparent will provide more control to your users over their information. Thereafter, ask what is relevant and you will get what you need and users will have no reason to get off your signup forms.</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"April 28, 2017","updated_date":null,"description":"Do your signup forms contribute in your lead generation campaign? Craft your signup forms with these best practices to make sure they convert like crazy.","title":"The Ultimate Guide to Craft Sign-up Forms That Convert Like Crazy","tags":null,"pinned":null,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7699115044247788,"src":"/static/2c2f497fead0412a8c8fbca6c8a6037d/5239a/The-ultimate-guide-to-craft-sign-up-forms-that-covert-like-crazy.webp","srcSet":"/static/2c2f497fead0412a8c8fbca6c8a6037d/61e93/The-ultimate-guide-to-craft-sign-up-forms-that-covert-like-crazy.webp 200w,\n/static/2c2f497fead0412a8c8fbca6c8a6037d/1f5c5/The-ultimate-guide-to-craft-sign-up-forms-that-covert-like-crazy.webp 400w,\n/static/2c2f497fead0412a8c8fbca6c8a6037d/5239a/The-ultimate-guide-to-craft-sign-up-forms-that-covert-like-crazy.webp 560w","sizes":"(max-width: 560px) 100vw, 560px"}}},"author":{"id":"Rakesh Soni","github":"oyesoni","avatar":"rakesh-soni.webp"}}}}]},"markdownRemark":{"excerpt":"Identity is evolving, and developers are at the forefront of this transformation. Every day brings a new learning—adapting to new standards…","fields":{"slug":"/identity/developer-first-identity-provider-loginradius/"},"html":"<p>Identity is evolving, and developers are at the forefront of this transformation. Every day brings a new learning—adapting to new standards and refining approaches to building secure, seamless experiences.</p>\n<p>We’re here to support developers on that journey. We know how important simplicity, efficiency, and well-structured documentation are when working with identity and access management solutions. That’s why we’ve redesigned the <a href=\"https://www.loginradius.com/\">LoginRadius website</a>—to be faster, more intuitive, and developer-first in every way.</p>\n<p>The goal? Having them spend less time searching and more time building.</p>\n<h2 id=\"whats-new-and-improved-on-the-loginradius-website\" style=\"position:relative;\"><a href=\"#whats-new-and-improved-on-the-loginradius-website\" aria-label=\"whats new and improved on the loginradius website permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>What’s New and Improved on the LoginRadius Website?</h2>\n<p>LoginRadius’ vision is to give developers a product that simplifies identity management so they can focus on building, deploying, and scaling their applications. To enhance this experience, we’ve spent the last few months redesigning our interface— making navigation more intuitive and reassuring that essential resources are easily accessible.</p>\n<p>Here’s a closer look at what’s new and why it’s important:</p>\n<h3 id=\"a-developer-friendly-dark-theme\" style=\"position:relative;\"><a href=\"#a-developer-friendly-dark-theme\" aria-label=\"a developer friendly dark theme permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>A Developer-Friendly Dark Theme</h3>\n<p><img src=\"/f46881583c7518a93bb24e94c32320de/a-developer-friendly-dark-theme.webp\" alt=\"This image shows how LoginRadius offers several authentication methods like traditional login, social login, passwordless login, passkeys and more in a dark mode.\">    </p>\n<p>Developers spend long hours working in dark-themed IDEs and terminals, so we’ve designed the LoginRadius experience to be developer-friendly and align with that preference.</p>\n<p>The new dark mode reduces eye strain, enhances readability, and provides a seamless transition between a coding environment and our platform. Our new design features a clean, modern aesthetic with a consistent color scheme and Barlow typography, ensuring better readability. High-quality graphics and icons are thoughtfully placed to enhance the content without adding visual clutter.</p>\n<p>So, whether you’re navigating our API docs or configuring authentication into your system, our improved interface will make those extended development hours more comfortable and efficient.</p>\n<h3 id=\"clear-categorization-for-loginradius-capabilities\" style=\"position:relative;\"><a href=\"#clear-categorization-for-loginradius-capabilities\" aria-label=\"clear categorization for loginradius capabilities permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Clear Categorization for LoginRadius Capabilities</h3>\n<p><img src=\"/e5358b82be414940f3fb146013845933/capabilities.webp\" alt=\"This image shows a breakdown of all the LoginRadius CIAM capabilities, including authentication, security, UX, scalability and multi-brand management.\"></p>\n<p>We’ve restructured our website to provide a straightforward breakdown of our customer identity and access management platform capabilities, helping you quickly find what you need:</p>\n<ul>\n<li>Authentication: Easily understand <a href=\"https://www.loginradius.com/blog/identity/authentication-option-for-your-product/\">how to choose the right login method</a>, from traditional passwords and OTPs to social login, federated SSO, and passkeys with few lines of code.</li>\n<li>Security: Implement no-code security features like bot detection, IP throttling, breached password alerts, DDoS protection, and adaptive MFA to safeguard user accounts.</li>\n<li>User Experience: Leverage AI builder, hosted pages, and drag-and-drop workflows to create smooth, branded sign-up and login experiences.</li>\n<li>High Performance &#x26; Scalability: Confidently scale with sub-100ms API response times, 100% uptime, 240K+ RPS, and 28+ global data center regions.</li>\n<li>Multi-Brand Management: Efficiently manage multiple identity apps, choosing isolated or shared data stores based on your brand’s unique needs.</li>\n</ul>\n<p>This structured layout ensures you can quickly understand each capability and how it integrates into your identity ecosystem.</p>\n<h3 id=\"developer-first-navigation\" style=\"position:relative;\"><a href=\"#developer-first-navigation\" aria-label=\"developer first navigation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Developer-First Navigation</h3>\n<p><img src=\"/a8c155c2b6faf3d5f4b4de4e2b14d763/developers-menu.webp\" alt=\"This image shows the LoginRadius menu bar, highlighting the developer dropdown.\">   </p>\n<p>We’ve been analyzing developer workflows to identify how you access key resources. That’s why we redesigned our navigation with one goal in mind: to reduce clicks and make essential resources readily available.</p>\n<p>The new LoginRadius structure puts APIs, SDKs, and integration guides right at the menu bar under the Developers dropdown so you can get started faster. Our Products, Solutions, and Customer Services are also clearly categorized, helping development teams quickly find the right tools and make informed decisions.</p>\n<h3 id=\"quick-understanding-of-integration-benefits\" style=\"position:relative;\"><a href=\"#quick-understanding-of-integration-benefits\" aria-label=\"quick understanding of integration benefits permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Quick Understanding of Integration Benefits</h3>\n<p><img src=\"/b2f9a964a2da0ea83e2f8596b833bba7/we-support-your-tech-stack.webp\" alt=\"This image shows a list of popular programming languages and frameworks offered by LoginRadius.\"></p>\n<p>Developers now have a clear view of the tech stack available with LoginRadius, designed to support diverse business needs.</p>\n<p>Our platform offers pre-built SDKs for Node.js, Python, Java, and more, making CIAM integration seamless across popular programming languages and frameworks.</p>\n<h2 id=\"over-to-you-now\" style=\"position:relative;\"><a href=\"#over-to-you-now\" aria-label=\"over to you now permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Over to You Now!</h2>\n<p>Check out our <a href=\"https://www.loginradius.com/\">revamped LoginRadius website</a> and see how the improved experience makes it easier to build, scale, and secure your applications.</p>\n<p>Do not forget to explore the improved navigation and API documentation, and get started with our free trial today. We’re excited to see what you’ll build with LoginRadius!</p>\n<style class=\"grvsc-styles\">\n  .grvsc-container {\n    overflow: auto;\n    -webkit-overflow-scrolling: touch;\n    padding-top: 1rem;\n    padding-top: var(--grvsc-padding-top, var(--grvsc-padding-v, 1rem));\n    padding-bottom: 1rem;\n    padding-bottom: var(--grvsc-padding-bottom, var(--grvsc-padding-v, 1rem));\n    border-radius: 8px;\n    border-radius: var(--grvsc-border-radius, 8px);\n    font-feature-settings: normal;\n  }\n  \n  .grvsc-code {\n    display: inline-block;\n    min-width: 100%;\n  }\n  \n  .grvsc-line {\n    display: inline-block;\n    box-sizing: border-box;\n    width: 100%;\n    padding-left: 1.5rem;\n    padding-left: var(--grvsc-padding-left, var(--grvsc-padding-h, 1.5rem));\n    padding-right: 1.5rem;\n    padding-right: var(--grvsc-padding-right, var(--grvsc-padding-h, 1.5rem));\n  }\n  \n  .grvsc-line-highlighted {\n    background-color: var(--grvsc-line-highlighted-background-color, transparent);\n    box-shadow: inset var(--grvsc-line-highlighted-border-width, 4px) 0 0 0 var(--grvsc-line-highlighted-border-color, transparent);\n  }\n  \n</style>","frontmatter":{"date":"February 21, 2025","updated_date":null,"description":"LoginRadius’ vision is to give developers a product that simplifies identity management so they can focus on building, deploying, and scaling their applications. To enhance this experience, we’ve redesigned our website interface, making navigation more intuitive and reassuring that essential resources are easily accessible.","title":"Revamped & Ready: Introducing the New Developer-First LoginRadius Website","tags":["Developer tools","API","Identity Management","User Authentication"],"pinned":true,"coverImage":{"childImageSharp":{"fluid":{"aspectRatio":1.7857142857142858,"src":"/static/80b4e4fbe176a10a327d273504607f32/58556/hero-section.webp","srcSet":"/static/80b4e4fbe176a10a327d273504607f32/61e93/hero-section.webp 200w,\n/static/80b4e4fbe176a10a327d273504607f32/1f5c5/hero-section.webp 400w,\n/static/80b4e4fbe176a10a327d273504607f32/58556/hero-section.webp 800w,\n/static/80b4e4fbe176a10a327d273504607f32/99238/hero-section.webp 1200w,\n/static/80b4e4fbe176a10a327d273504607f32/7c22d/hero-section.webp 1600w,\n/static/80b4e4fbe176a10a327d273504607f32/1258b/hero-section.webp 2732w","sizes":"(max-width: 800px) 100vw, 800px"}}},"author":{"id":"Rakesh Soni","github":"oyesoni","avatar":"rakesh-soni.webp"}}}},"pageContext":{"limit":6,"skip":900,"currentPage":151,"type":"///","numPages":164,"pinned":"ee8a4479-3471-53b1-bf62-d0d8dc3faaeb"}},"staticQueryHashes":["1171199041","1384082988","2100481360","23180105","528864852"]}