EN
HTML - search input
0
points
In this article, we would like to show you how to create search input in HTML.
Quick solution:
<input type="search" name="search-name" />
Practical example
In this example, we create search input using input
element's attribute type="search"
.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<body>
<label>
<span>MySearch:</span>
<input type="search" name="my-search" />
</label>
</body>
</html>