HTML/Html-Notes/10-表单demo.html
2023-05-01 19:37:40 +08:00

23 lines
506 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width,initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="https://www.baidu.com/s" target="_blank">
<!-- %E4%B8%80%E4%BA%BA%E4%B9%8B%E4%B8%8B&fenlei -->
<input type="text" placeholder="你要搜索啥?" name="wd">
<button>搜索</button>
</form>
</body>
</html>