This is what it looks like embedded
Note that <input /> is not inside the form tags.
This is what it looks like embedded
The Pfieldset> pair: This pair describes the included elements as
a set of fields. This element isn't necessary, but it does give you some
nice organization and layout options later when you use CSS.
The <legend> tag: A part of the fieldset, this tag allows you to specify a legend for the entire fieldset.
<form action = "">
<p>
<label>Name</label>
<input type = "text"
id = "txtName"
value = "Jonas" />
</p>
</form>
This code above produces the output picture below.