HTML5網頁投票源代碼
<!DOCTYPE html> <html> <head> <title>投票頁面</title> </head> <body> <h1>我的投票頁面</h1> <p>請選擇您要投票的選項</p> <form action="submit.php"> <input type="radio" name="option" value="1"><label>選項1</label><br> <input type="radio" name="option" value="2"><label>選項2</label><br> <input type="radio" name="option" value="3"><label>選項3</label><br> <input type="submit" value="提交"> </form> </body> </html>
在這個HTML5網頁投票源代碼中,我們使用了radio按鈕來提供選項,使用form標簽來創建表單,并使用submit按鈕來提交表單。在提交表單后,我們將表單數據發送到submit.php文件中進行處理。
上一篇html5網頁留言代碼
下一篇label 字體css