I'm trying to get the following pattern which is from Microsoft Word:
and in HTML I'm getting:
How do i code it in the way where the textarea is after the label like the visualization in word above?
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<title>testform</title>
<link rel = "stylesheet" href = "test2.css">
</head>
<body>
<div class = "entity">
<label >Enter your address</label>
<textarea id = "addr_out"></textarea>
</div>
</body>

