<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch&display=swap" rel="stylesheet">
<style>

body {
	margin: 0px;
	border: 0px;
	padding: 0px;
}

#canvas {
	position: relative;
	margin: 0 auto;
	width: 1920px;
	height: 1080px;
	font-family: 'Chakra Petch', sans-serif;
}

.widgets {
	position: absolute;
}

</style>
</head>
<body>
<div id="canvas">
<div class="widgets" style="left: 100px; top: 100px; width: 200px; height: 50px; border: 2px solid rgba(0, 0, 0, 0.5); border-radius: 10px; background-color: rgba(0, 0, 0, 0.25); color: rgba(255, 255, 255, 1); text-align: center; line-height: 50px; font-size: 18px;">
<span>Hello World!</span>
</div>
<div class="widgets" style="left: 600px; top: 100px; width: 200px; height: 50px; border: 2px solid rgba(0, 0, 0, 0.5); border-radius: 10px; background-color: rgba(0, 0, 0, 0.25); color: rgba(255, 255, 255, 1); text-align: center; line-height: 50px; font-size: 18px;">
<span>Label:</span>
</div>
<div class="widgets" style="left: 700px; top: 100px; width: 100px; height: 50px; border: 2px solid rgba(0, 0, 0, 0); border-radius: 10px; background-color: rgba(0, 0, 0, 0); color: rgba(255, 255, 255, 1); text-align: center; line-height: 50px; font-size: 18px;">
<span>Value</span>
</div>
</div>
</body>
</html>
