-
Style the BODY element with a white background color
-
Create a DIV and give it a
data-cart-info
attribute. Inside the DIV, create a HEADING withmdc-typography--headline4"
as its CSS class -
The HEADING should have 2 SPAN elements. The First displays a shopping cart by setting its class to
material-icons
and setting its content to shopping_cart. The second SPAN has an attribute ofdata-bill
and will be used to display the total figure the user is trying to pay on the app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Mini App</title> | |
<style> | |
body { | |
margin: 0; |