mirror of
https://github.com/Rushilwiz/searchbar.git
synced 2025-04-03 20:00:21 -04:00
21 lines
647 B
HTML
21 lines
647 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
|
|
<link href="./styles.css" rel="stylesheet">
|
|
<title>Hello World!</title>
|
|
</head> <body>
|
|
|
|
<div class="wrap">
|
|
<div class="search">
|
|
<input type="text" class="searchTerm" placeholder="What do you want to do?">
|
|
<button type="submit" class="searchButton">
|
|
<i class="fa fa-search"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|