This is an example of registration with the validation option, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The icons, CSS styles, and Bootstrap styles are imported to the code with their URLs. The body of the form is given a background color of #dee9ff. Media quarries are used to increase the responsiveness of the form. JavaScript functions are used to implement the date and phone number validation of the form. The registration form icon has the styles of text-align as center, background-color as #5891ff, border-radius as 50% to get the circle shape, font-size as 40px, color as white, width and height as 100px, margin as auto, margin-bottom as 50px, and line-height as 100px. The Create Account button has the styles of border-radius as 30px, padding as 10px 20px, font-size as 18px, font-weight as bold, background-color as #5791ff, color as white, and margin-top as 20px. The social media icons change their opacity to 0.6, in a hover event.
Source: https://epicbootstrap.com/snippets/registration
This is an example of a subscription form, designed using HTML, CSS, and Bootstrap framework 4. Bootstrap and CSS styles are imported to the code with their URLs. The form is given the styles of background as #eff1f4, font color as #313437, border-radius as 3px, color as inherit, text-indent as 9px, height as 45px, margin-right as 10px, and min-width as 250px. The title of the form is given the styles of font-size as 24px, font-weight as bold, margin-bottom as 25px, and line-height as 1.5, whereas the content section has the styles of font color as #7d8285 and line-height as 1.5. The subscribe button has the styles of padding as 16px 32px, opacity as 0.9, text-transform as uppercase to automatically convert the text to uppercase, font-weight as bold, font-size as 13px, letter-spacing as 0.4px, and line-height as 1. The Subscribe button is given a background color of #055ada, and font color of #fff. The Subscribe button changes its opacity value to 1, in a hover event.
Source: https://epicbootstrap.com/snippets/subscription-form
This is an example of a neomorphic login web form with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The colors used in the form are predefined as $color-red: #AE1100, $color-bg: #EBECF0, $color-shadow: #BABECC, and $color-white: #FFF. The form is given a background color of $color-bg. The body and button sections are given the styles of font-family as 'Montserrat', sans-serif, letter-spacing as -0.2px, and font-size as 16px. The login button is given a font size as 16px and a padding as 16px, and a background color as $color-bg, and a text shadow as 1px 1px 0 $color-white. The input fields are given a box-shadow of inset 2px 2px 5px $color-shadow, inset -5px -5px 10px $color-white, and a transition value as all 0.2s ease-in-out. The login button is given a cursor style as pointer to get the hand cursor effect in a hover event, font-weight as 600, color as #61677C, transition as all 0.2s ease-in-out, and box-shadow as -5px -5px 20px $color-white, 5px 5px 20px $color-shadow. In a focus event, the box-shadow of the input fields turns to inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white. In hover and active events, the login button takes the styles of box shadow as -2px -2px 5px $color-white, 2px 2px 5px $color-shadow, and inset 1px 1px 2px $color-shadow, inset -1px -1px 2px $color-white.
Source: https://codepen.io/swapnet/pen/QWwPVwE
This is an example of a simple star rating form, designed using HTML, CSS, and Bootstrap framework 4. The icons are imported to the code with their URLs. The form is given the styles of display as flex, flex-wrap as wrap, height as 100vh, align-items as center, justify-content as center, and padding as 0 20px. The rating label has the styles of cursor as pointer to get the hand cursor effect on a hover event, width and height as 40px, background-size as 76%, and margin-top as auto. The feedback container is given the styles of max-width as 360px, background-color as #fff, width as 100%, padding as 30px, border-radius as 8px, display as flex, flex-direction as column, flex-wrap as wrap, align-items as center, and box-shadow as 0 4px 30px rgba(0,0,0,.05). The container consists of five feedback stars with five emoji’s to appear according to the rating given, which is implemented by the transform styles on the rating labels. Rating 1 has the transform style of translateY(-100px), rating 2 has the transform style of translateY(-200px), rating 3 is given a transform style of translateY(-300px), rating 4 has translateY(-400px), and rating 5 is given the transform style of translateY(-500px).
Source: https://codepen.io/knyttneve/pen/EBNqPN
This is an example of a web form that consists of feedback reactions icons, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The feedback icons are imported to the code with their URLs. The concept of Lists has been used with UL and LI components. UL element has been used with the child elements of LI to display the icons in an orderly manner. JavaScript functions are used to implement the active status of the feedback icons. The number of feedback icons is five with angry, sad, ok icons and two happy icons. Each icon has three sections as eye left, eye right, and mouth, which is used to implement the reactions. The colors of the feedback icons are predefined as normal: #ECEAF3, normal-shadow: #D9D8E3, normal-mouth: #9795A4, normal-eye: #595861, active: #F8DA69, active-shadow: #F4B555, active-mouth: #F05136, active-eye: #313036, active-tear: #76b5e7, and active-shadow-angry: #e94f1d. The cursor style for the icons is given as pointer to get the hand cursor effect on a hover event. The reaction animations are created by giving different styles to the eyes and mouth sections of each icon.
Source: https://codepen.io/aaroniker/pen/mdyYBPP
This is an example of a task management dashboard interface, designed using HTML, CSS, and Bootstrap framework 4. The fonts and images are imported to the code with their URLs, whereas media queries have been used to make the form responsive. The colors are predefined as variables. The body is given a set of styles as justify-content as center, flex-direction as column, overflow as auto, width as 100%, height as 100vh, padding as 20px, font-family as 'DM Sans', sans-serif, and font-size as 12px. The cursor style for buttons is set as pointer to get the hand cursor effect. The left bar is given the styles of background-color #f5f8ff, width as 230px, and border-right as 1px solid #e3e7f7, whereas the right bar is given the styles of width as 320px, border-left as 1px solid #e3e7f7, display as flex, and flex-direction as column. The header is given the styles of font-size as 20px, color as #5d606b, and margin-left as 30px. The task box takes a transforming effect of scale(1.02), in a hover event.
Source: https://codepen.io/aybukeceylan/pen/gOpbRPO