フォームに入力ボックスを使用せずにいくつかの手順を説明するために、独自のテキストを追加しようとしています。これを行うことは可能ですか?テキストである必要がある行は次のとおりです。
<p>For a new location please add an entry</p>
タグなしで試してみました<p>
が、やはり成功しませんでした。これが非常に単純化されているように見える場合は申し訳ありませんが、w3schools、このサイト、または単にGoogle検索でこれについて何も見ませんでした.
<form action="insert.php" method="post">
Name <input name="name" type="text">
<br>
Email address of user <input name="email" type="text">
<br>
Phone Number <input name="phone" type="text">
<br>
Town <input name="town" type="text">
<br>
County <select name="county">
<option> Outside Ireland </option>
<option> Antrim </option>
<option> Armagh </option>
<br>
<p>For a new location please add an entry</p>
<br>
Name of New Location <input name="newlocation" type="text">
<br>
Name of Location <input name="location" type="text">
<br>
Link in Google Maps <input name="gmapslink" type="text">
<br>
<input type="submit">
</form>