Panel with the icon on the left bootstrap

-5

friends a query, how can I make a panel like the following?

with the icon on the left side?

    
asked by Luis Vega 19.09.2018 в 17:10
source

1 answer

1
<body>
<div class="container">
    <div class="row">
        <div class="col-6">
            <div class="card">
                <div class="card-body">
                    <div class="col-3" style="background: green">
                        Icono aqui
                    </div>
                    <div class="col-9">
                        Texto aqui
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>    
</body>
    
answered by 19.09.2018 в 17:29