|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8"> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
|
<title>Красивый поисковик</title> |
|
|
<link rel="stylesheet" href="style.css"> |
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> |
|
|
</head> |
|
|
<body> |
|
|
<div class="container"> |
|
|
<h1 class="title">Красивый поисковик</h1> |
|
|
<div class="search-box"> |
|
|
<input type="text" id="search-input" placeholder="Введите ваш запрос..."> |
|
|
<button id="search-button"><i class="fas fa-search"></i></button> |
|
|
</div> |
|
|
<div class="results" id="results"></div> |
|
|
</div> |
|
|
<script src="script.js"></script> |
|
|
</body> |
|
|
</html> |