We Recommend

Smarty PHP Template Programming And Applications Smarty PHP Template Programming And Applications
Smarty is a templating engine for PHP. Designers who are used to working with HTML files can work with Smarty templates, which are HTML files with simple tags while programmers work with the underlying PHP code. The Smarty engine brings the code and templates together. The result of all this is that designers can concentrate on designing, programmers can concentrate on programming, and they don't need to get in each others way so much.


Posted By

komposition on 10/07/08


Tagged

form textmate html xhtml


Versions (?)


contact form default


Published in: Other 


  1. <form action="form/m-form.php" method="post" class="niceform">
  2. <fieldset>
  3. <label for="お名前">お名前:<small class="accent1"> ※必須</small></label>
  4. <input type="text" id="name" name="お名前" size="25" />
  5. </fieldset>
  6. <fieldset>
  7. <label for="フリガナ">フリガナ:<small class="accent1"> ※必須</small></label>
  8. <input type="text" id="furigana" name="フリガナ" size="25" />
  9. </fieldset>
  10. <fieldset>
  11. <label for="御社名">御社名:</label>
  12. <input type="text" id="onsyamei" name="御社名" size="30" />
  13. </fieldset>
  14. <fieldset>
  15. <label for="zip">郵便番号</label>
  16. <input name="zip" type="text" class="input" id="zip" size="14" onKeyUp="AjaxZip2.zip2addr(this,'ご住所','ご住所');" >
  17. <a href="https://www.post.japanpost.jp/zipcode/index.html" title="郵便番号検索" target="_blank">郵便番号が不明の方はこちら</a>
  18. </fieldset>
  19. <fieldset>
  20. <label for="addr">ご住所<span class="accent1"> ※必須</span></label>
  21. <input name="ご住所" type="text" class="input" id="addr" size="39" />
  22. </fieldset>
  23. <fieldset>
  24. <label for="電話番号">電話番号:<small class="accent1"> ※必須</small></label>
  25. <input type="text" id="tel" name="電話番号" size="15" />
  26. </fieldset>
  27. <fieldset>
  28. <label for="FAX">FAX:</label>
  29. <input type="text" id="fax" name="FAX" size="15" />
  30. </fieldset>
  31. <fieldset>
  32. <label for="textareainput">お問合せ内容<small class="accent1"> ※必須</small></label>
  33. <textarea id="naiyou" name="お問合せ内容" rows="10" cols="40"></textarea>
  34. </fieldset>
  35. <p id="submit_btn"><input type="reset" name="some_name" value="リセット" id="some_name" /><input type="submit" value="確認" /></p>
  36.  
  37. </form>
  38.  

Report this snippet 

You need to login to post a comment.