This is an example of a bootstrap user profile interface with hover effects, designed using HTML, CSS, and bootstrap framework 4. The images, icons, and fonts are imported to the code with their URLs. Media queries have been used to increase the responsiveness of the form. The body of the form is given the styles of font-family as 'Greycliff', sans-serif, background as #eeeeee URL("#"), tap-highlight-color as rgba(0, 0, 0, 0), font-size as 10px, and letter-spacing as 2px. The follow button text is given a font color of #ffffff, background color of #2d5488, and a transition effect of all 1s. The form is divided into four profile sections and given the styles accordingly. The profile name of each section has the styles of font-weight as 100, font-size as 2.2em, and color as #848484. The buttons are given a background color as #2d5488, which changes to #5486c9, in a hover event.
Source: https://codepen.io/vibham05/pen/RwNYbNz
This is an example of a simple bootstrap profile card, designed using HTML, CSS, and bootstrap framework 4. The images, fonts, and icons are imported to the code with their URLs. The body of the form is given a style set of height as 100vh, display as grid, place-items as center, and background-image as linear-gradient (to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%). The profile card is given a transparent background color of hsla(240, 31%, 25%, 0.7). The card is given four borders as top, right, bottom, left and given border animations accordingly. The animations are slide-in-horizontal 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards, slide-in-vertical 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards, slide-in-horizontal-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards, and slide-in-vertical-reverse 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) forwards, respectively. The card content is given the font-family style of Lato, sans-serif, and a transform effect of scale(0.6), and a transition effect of bump-in 0.5s 0.8s forwards. The image is given a border-radius of 50% to get the circular shape, whereas the user name is given a font-size of 26px, and animation of fill-text-white 1.2s 2s forwards.
Source: https://codepen.io/iam2r/pen/ZEYMgLG
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 bootstrap grid layout used to display thumbnail details with hover effects, designed using CSS, HTML, and Bootstrap framework 4. The background images of the cards are imported to the code with their URLs. The number of grid items per row is defined as 3, and the gap between each item is set as 1, in CSS. The colors are predefined as primary-color: #333, secondary-color: #fff, and font-color: #fff. For the browser that does not support the grid layout, the background color is set as #00d2ff. The font family for the form is given as 'Roboto', sans-serif. The title of the form is given a style set of color as white, font-size as 30px, text-transform as uppercase to automatically convert the text to uppercase, and font-weight as 700, whereas the subtitle of the form is given the styles of font-size as 18px, and font-weight as 300. In a hover effect, the first card takes a transform effect of transformSkewScale (-45deg, 1), and a transition effect of (all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275)), whereas the second and third ones take transformSkewScale(45deg, 1), and transformSkewScale(45deg, 0) effects, respectively.
Source: https://codepen.io/nikhil8krishnan/pen/jbdXdr
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 website header with a bootstrap carousel, designed using HTML, CSS< JavaScript and Bootstrap framework 4. The images and bootstrap styles are imported to the code with their URLs, whereas JavaScript had been used to implement carousel features. 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 details in an orderly manner. Media queries have been used to increase the responsiveness of the form. The nav-bar is given the styles of font-family as Verdana, color as #ffffff, and font-size as 20px. The background color for the nav-bar is set as transparent to make the menu transparent. The carousel image is given a linear gradient background color of linear-gradient ( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), and a transform effect of translate3d(0, 0, 0). The title is given a font-weight of 600, and a font-size of 60px, whereas the subtitle is given a font-size of 23px. The explore button is given the background color #FF4000.
Source: https://codepen.io/arian-atapour/pen/xxbYxGW