html view details

I have this html and I want to show it in my app, but I've already made some changes and it doesn't show.

<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}

.caixa {
width: "200px";
height: 150px;
text-align: center;
padding: 20px;
border-radius: 10px;
margin: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.laranja {
background-color: orange;
color: white;
}

.azul {
background-color: blue;
color: white;
}
</style>
</head>
<body>
<div class="caixa laranja">
<h2>Total da Meta</h2>
<p>R$ 10,000</p>
</div>
<div class="caixa azul">
<h2>Meta Realizado</h2>
<p>R$ 7,500</p>
</div>
</body>
</html>

 

it would have to appear like this

DEVIMPLOY_Autom_0-1696445306284.png

 



0 8 1,297
8 REPLIES 8
Top Labels in this Space