abizana / index.html
Serg4451D's picture
Update index.html
4cc0965 verified
raw
history blame contribute delete
803 Bytes
<!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>