Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

create card in html css

<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Card</title>
    <link rel="stylesheet" type="text/css" href="./style.css">
    <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,900" rel="stylesheet">
    <style>
        body {
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom right, #1958a0, #fafffd);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .CartContainer {
            width: 70%;
            height: 90%;
            background-color: #ffffff;
            border-radius: 20px;
            box-shadow: 0px 10px 20px #1687d933;
        }
    </style>
</head>

<body>
    <div class="CartContainer">

    </div>
</body>

</html>
Source by getbootstrap.com #
 
PREVIOUS NEXT
Tagged: #create #card #html #css
ADD COMMENT
Topic
Name
4+5 =