<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.div1
{
margin: 20px;
text-align: center;
width: 150px;
background-color: tomato;
height: 50px;
}
.div2
{
margin: 5px 50px 20px 10px;
width: 150px;
background-color: lightblue;
height: 50px;
align-items: center;
}
</style>
</head>
<body>
<div class="div1">
<p>ICPC</p>
</div>
<div class="div2">
<p>NCPC</p>
</div>
</body>
</html>
0 Comments