How can I place "Comment:" on red line as shown in the above picture? I know it's a little bit of a silly question, but as a beginner it would be helpful for me. Here is a code snippet:
body {
  border: 1px solid black;
  height: 550px;
  width: 550px;
  padding: 5px;
}
h2 {
  text-align: center;
}<h2>FeedBack Form</h2>
<strong>Name:</strong> 
<input type="text" />
<br>
<br>
<strong>Comment:</strong> 
<input type="text" style="height:100px; width:250px;" />
<br>
<br>
<strong>Email Address:</strong> 
<input type="text" />
 
     
     
     
     
    