File size: 803 Bytes
4cc0965 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!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> |