0

いくつかの HTML スクリプトを VS 2012 Express に入力したところ、次のことがわかりました: Validation(XHTML5): element 'li' cannot be nested within element 'form' というエラー メッセージ (行)

  1. VS 2012 Express のデザイン ウィンドウから直接ブラウザーで HTML スクリプトを実行することはできますか?

これが私のコードです:

<form class="contact_form" action="" method="post" name="contact_form">
<ul>
    <li>
         <h2>Contact Us</h2>
         <span class="required_notification">* Denotes Required Field</span>
    </li>
    <li>
        <label for="name">Name:</label>
        <input type="text" name="name" />
    </li>
</ul>
<li>
    <label for="email">Email:</label>
    <input type="text" name="email" />
    <span class="form_hint">Proper format "name@something.com"</span>
</li>
<li>
    <label for="website">Website:</label>
    <input type="text" name="website" />
    <span class="form_hint">Proper format "http://someaddress.com"</span>
</li>
<li>
    <label for="message">Message:</label>
    <textarea name="message" cols="40" rows="6" >
</li>
<li>
    <button class="submit" type="submit">Submit Form</button>
</li>
4

1 に答える 1