You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>
<title>Barra de Vida</title>
<style>
.barra {
width: 500px;
height: 20px;
background-color: #f2f2f2;
border-radius: 10px;
margin-bottom: 20px;
}

.progresso {
height: 100%;
background-color: red;
border-radius: 10px;
transition: width 0.5s ease;
}

.valor {
display: flex;
justify-content: space-between;
font-size: 16px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="barra">
<div class="progresso" style="width: 50%;"></div>
</div>
<div class="valor">
<span>Vida: 50 / 100</span>
<span>Classe de Armadura: 15</span>
<span>Deslocamento: 30 pés</span>
</div>
</body>
</html><!DOCTYPE html>
<html>
<head>
<title>Barra de Vida</title>
<style>
.barra {
width: 500px;
height: 20px;
background-color: #f2f2f2;
border-radius: 10px;
margin-bottom: 20px;
}

.progresso {
height: 100%;
background-color: red;
border-radius: 10px;
transition: width 0.5s ease;
}

.valor {
display: flex;
justify-content: space-between;
font-size: 16px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="barra">
<div class="progresso" style="width: 50%;"></div>
</div>
<div class="valor">
<span>Vida: 50 / 100</span>
<span>Classe de Armadura: 15</span>
<span>Deslocamento: 30 pés</span>
</div>
</body>
</html>

You might also like