BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <style> input[type="text"] { width:150px; display:block; margin-bottom:10px; background-color:yellow; } input[type="button"] { width:120px; margin-left:35px; display:block; } </style> </head> <body> <form action="demo-form.php" method="get" name="input"> Firstname:<input name="fname" size="20" type="text" value="Peter"> Lastname:<input name="lname" size="20" type="text" value="Griffin"> <input type="button" value="Example Button"> </form> </body> </html>
运行结果