This is a template of a web form that has images with title and price with icons on hover, designed using JavaScript, HTML, and CSS. The fonts and images are imported to the form with their URLs. JavaScript functions have been used to implement the mouse hover effects. The image card is given the styles of font-family as 'Fira Sans Extra Condensed', Arial, sans-serif, position as relative, display as inline-block, overflow as hidden, margin as 10px, min-width as 230px, max-width as 315px, width as 100%, font-size as 16px, background-color as #fff, color as #111, line-height as 1.2em, and text-align as left. The image has the styles of vertical-align as top and max-width: 100%. The header inside the image has the styles of font-size as 1.4rem, font-weight as 400, and margin as 0 0 4px. The price is given a color of #4da3e2 and a font-size of 1.5rem. In a hover event, the icons take the background color of #4da3e2, the color of #ffffff and the cursor as pointer to get the hand cursor. Source: https://littlesnippets.net/snip1583
This is another example of a Card layout, designed using HTML, CSS, and JavaScript. JavaScript functions have been used to implement the mouse hover animations. The fonts and images are imported to the form with their URLs. The card is given an initial style set of font-family as 'Raleway', sans-serif, display as inline-block, color as #ffffff, margin: 10px, min-width: 230px; max-width: 315px and font-size as 16px. The image has the styles of vertical-align as top and backface-visibility as hidden. The header inside the card is given the styles transform as translateY(-100%), transition-delay as 0.05s, font-weight: 400, margin-bottom: 5px, text-transform as uppercase to transform the text to uppercase automatically and font-weight as 400. The sub heading inside the card is given the color #ae895d, transform as translateY(-100%), padding: 3px 10px, font-weight as normal, and transition-delay as 0s. Source: https://littlesnippets.net/snip1584
This is an example of a Blog Cards layout, designed using CSS and HTML. 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 details in an orderly manner. The images have been imported to the form with their URLs. The body is given the styles of background as #f1f1f1, and margin as 2rem. Colors have been defined as variables; which are $color_white as #fff, $color_prime as #5ad67d, $color_grey as #e2e2e2, $color_grey_dark as #a2a2a2. The blog card has the styles of background: $color_white, line-height: 1.4, font-family: sans-serif, and border-radius: 5px. The details inside the card are given the styles color: $color_white, font-size: .9rem and, text-decoration: dotted underline.The photo takes a transform of scale(1.3) rotate(3deg) and a skew effect of skew(3deg) in a hover event whereas the list inside the card and the author name takes the color $color_prime in a mouse hover effect. Source: https://codepen.io/ChynoDeluxe/pen/bdXeqQ/

Blog Cards

4.3.1
This is an example of an Article News Card, designed using CSS, HTML, and JavaScript. JavaScript functions have been used to implement hover animations. The images have been imported to the form with their URLs. The body of the form is given a style set of background as darken(@white, 5%), font-family as 'proxima-nova-soft', sans-serif, and font-size as 14px. The month section of the thumbnail is given the styles font-size as 12px, background as @accent, and text-transform as uppercase. The title is given the styles color: @dark_gray, font-size: 26px, and font-weight: 700 whereas the subtitle is given the styles color: @accent, font-size: 20px, and font-weight: 400. The description has the styles color: @gray, font-size: 14px, and line-height: 1.8em. In a hover event, the description section takes the styles display: block, height: auto, and opacity: 1. Source: https://codepen.io/andytran/pen/BNjymy/
This is a template of a web form with a product card with animations, designed using HTML, CSS, and JavaScript. 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. The pictures imported to the form with their URLs. JavaScript hover(function(), click(function(), each(function() are used to implement carousel, flipping, load images animations. The form is given a background color of #eaebec and a font family of "Open Sans", sans-serif. The product card is given a transform-style of preserve-3d to add a 3D-space effect. It is also given a transform of rotateY( 180deg ) for the flipping animation. The view details button is given the styles border as 2px solid #fff, color as #fff, font size as 19px, text-align as center, text-transform as uppercase, and font-weight as 700 whereas it takes the color #48cfad and cursor takes the pointer effect in a mouse hover. The product card takes the color #34c29e in a mouse hover event. Source: https://codepen.io/virgilpana/pen/RNYQwB/

Product Card

4.3.1
This is an example of a web form with parallax depth cards layout, designed using CSS, HTML and JavaScript. JavaScript functions have been used to implement the card warping animations based on mouse movement, in a hover event. The body of the form is given the styles of margin as 40px 0, font family as "Raleway", font size as 14px, font weight as 500, and background color as #BCAAA4. The title is given the styles of the same font family, font size as 24px, font weight as 700, color as #5D4037, and text align as center. The card is given the styles of position as relative, flex as 0 0 240px, width as 240px, height as 320px, background color as #333, overflow as hidden, border radius as 10px, and box shadow as rgba(black, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset rgba(white, 0.5) 0 0 0 6px. Cursor is set as pointer to get the hand cursor effect on cards. Parallax depth effect has been achieved by using $hoverEasing, and $returnEasing variables. Source: https://codepen.io/andymerskin/pen/XNMWvQ/