HTML 百度搜索頁面代碼
下面是一個簡單的 HTML 代碼示例,用于顯示百度搜索頁面:
<html> <head> <title>百度搜索</title> </head> <body> <form action="https://www.baidu.com/s" method="get"> <div> <label for="wd">搜索關鍵詞:</label> <input type="text" id="wd" name="wd" value="" /> <input type="submit" value="搜索" /> </div> </form> </body> </html>這個 HTML 代碼包括了一個 form 元素,其中 action 屬性指向百度的搜索接口( https://www.baidu.com/s ),method 屬性設置為 get,這意味著搜索關鍵詞會以查詢字符串的形式附在 URL 上。form 元素里包含一個文本輸入框(用于輸入搜索關鍵詞),以及一個提交按鈕。此外,還包含了一些標簽,如 label 標簽,用于為輸入框添加標簽。