HTML是一種用于構建網頁的語言,而漂亮的搜索框則可以為網頁增添視覺上的美感。在這里,我們給大家分享一些HTML漂亮搜索框的代碼,希望能夠給大家提供一些靈感。
以下是一個簡單的漂亮搜索框代碼示例:
<form action="/" method="get"> <input type="text" placeholder="Search..." name="search" id="search"> <button type="submit">Go</button> </form>以上代碼將生成一個簡單的搜索框,其中包含了一個文本輸入框和一個“Go”按鈕。用戶可以在文本框中輸入關鍵字,然后點擊按鈕進行搜索。 如果你想要為這個搜索框增添一些額外的特性,可以使用CSS來實現。以下是一個帶有CSS樣式的漂亮搜索框代碼示例:
<style> .search-box { width: 300px; position: relative; margin: 0 auto; } input[type="text"] { width: 100%; height: 60px; padding: 10px; font-size: 24px; border: none; background-color: #eee; border-radius: 30px; } button[type="submit"] { position: absolute; top: 0; right: 0; width: 60px; height: 60px; border: none; background-color: #222; color: #fff; font-size: 24px; border-radius: 30px; } </style> <div class="search-box"> <form action="/" method="get"> <input type="text" placeholder="Search..." name="search" id="search"> <button type="submit">Go</button> </form> </div>以上代碼將生成一個漂亮的搜索框,其中包含了一個圓角矩形的文本輸入框和一個圓形的“Go”按鈕。搜索框還包含了一些CSS樣式,使其看起來更加美觀。 總的來說,漂亮的搜索框可以提升網頁的用戶體驗和美觀性。使用HTML和CSS來構建這些搜索框非常簡單,只需要一些基礎的知識和一些想象力即可。