This is an example of a simple bootstrap profile layout, designed using HTML, CSS, and bootstrap framework 4. The images, fonts, and icons are imported to the code with their URLs. The font family style for the form is set as 'Open Sans', sans-serif, whereas the form is given a background color of #009688, a width and a height of 100%, and the font-size as 16px. The profile card is given a style set of border-radius as 3px, background color as white, box-shadow as 0px 10px 20px rgba (0,0,0,0.2), whereas the content section of the card has the styles of width as 190px, and height as 300px, and background as cadetblue. The badges section is given the styles of background as #ECECEC, border-radius as 3px, and width as 480px. The image is given a border-radius of 50% to get the circular shape, whereas the name and designation headers are given a font-sizes of 1.8em, and 1.2em, respectively with the text style: Italic is given to the designation. CSS @keyframes is used to implement the animations in CSS. The profile card is given an appear animation effect of rotatemagic 0.75s cubic-bezier(0.425, 1.040, 0.470, 1.105) 1s both. Source: https://codepen.io/kartikag1/pen/jOEewev
This is an example of a web form with a 3D fold-out reveal card preview, designed using HTML, CSS, and JavaScript. The background images of the cards are imported to the code with their URLs. JavaScript functions have been used to create 3D animations in a focused event. The font family of the form is set as Sans+Pro and imported into the code with its URL. The colors are predefined as variables and set as white: #ffffff, lightBG: #dce1df, salmon: #ff6666, teal: #0096a0, tealMid: #0ebac7, tealContrast: #33ffff, darkGrey: #4f585e, and tealShade: #007c85. The body of the form is given the styles of background: @lightBG, color: @darkGrey, font-family: 'Source Sans Pro', sans-serif, and text-rendering: optimizeLegibility. The cards are given an initial set of styles such as background: @white, display: inline-block, margin: 8px, max-width: 300px, perspective: 1000, position: relative, text-align: left, and transition: all 0.3s 0s ease-in. The cursor is set as pointer to display the cursor as a hand, in a focus event on cards. Source: https://codepen.io/candroo/pen/wKEwRL
This is an example of a web form where the CSS grid is used as a mask to create a poster. It is designed using CSS, HTML, and Bootstrap framework 4. The CSS grid is displayed in 14 rows, which are defined in HTML. The background image is imported to the code with its URL. The background color of the HTML form is given as #124559, with the background-size set as 100vw. The body of the form is given a style set of font-family as 'Roboto Slab', serif, font-size as1.8vw, and color as #D3E6D9. The name of the person is displayed with the styles font-family as 'Rozha One', serif, position as relative, and font-size as 5vw. The items in the grid are left partially transparent to expose areas of the background image by changing the placement of the grid rows and columns with changing the value of grid-column-end: span and grid-row-end: span. The images and bootstrap styles are imported to the code with their URLs. Source: https://codepen.io/andybarefoot/pen/wrXvLj
This is an example of a vault layout web form designed using CSS and HTML. CSS grid view elements have been used to separate and organize the displaying sections whereas Flexbox is used to get an identical layout for the browsers that don't support the CSS grid. 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 unordered list. The default font size for the form is set to 10px. The body is given the style set of font-family as "Open Sans", Arial, sans-serif, display as flex, min-height as 100vh, background-color as #fafafa, and position as relative whereas the buttons are given the styles of font-size as inherit, font-weight as inherit, color as inherit, display as flex, justify-content as center, align-items as center, and cursor as pointer to display the cursor as a hand. The header is given a background color of #d12f2e and the search input field is given a color of rgba(255, 255, 255, 0.3) in a hover event. Source: https://codepen.io/GeorgePark/pen/PQweLr
This is an example of a bootstrap feature block with images, designed using HTML, CSS, and Bootstrap framework 4. The fonts are imported to the code with its URL. The web form is given the styles of font-family as "Montserrat", sans-serif, background color of #8d97ad, and font-weight as 300. The h1 to h6 sections are given a color of #3e4555 and a font-weight of 500. The card titles are given the styles of line-height as 22px, and font-size as 18px, and the background color of the form is set as #f4f8fa. The card titles are also given a text color of #3e4555, which changes to #316ce8, in a hover event. The text icons are given a style set of width as 80px, line-height as 80px, and font-size as 2rem, whereas the font color of the icons is set to #2cdd9b. The View Details button is given a background color of #2cdd9b and also the linear gradient color of that, for the browsers that support linear gradient colors. It changes its color to linear-gradient #1dc8cc, in a hover event.