You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>‫<قالب بلوجر‬/title>
<style>
/* ‫* تنسيقات الشريط‬/
#search-bar {
width: 300px;
}
#search-results {
margin-top: 10px;
}
</style>
</head>
<body>
<!-- ‫ شريط البحث‬-->
<input type="text" id="search-bar" placeholder="‫>"ابحث عن الصور‬

<!-- ‫ عرض نتائج البحث‬-->


<div id="search-results"></div>

<script>
// ‫جلب نتائج البحث وعرضها في الصفحة‬
function searchImages() {
var searchTerm = document.getElementById('search-bar').value;
// ‫ قم بتنفيذ الطلب أو استدعاء‬API ‫الخاص بجلب الصور‬
// ‫ واعرض النتائج في العنصر المحدد بواسطة‬id "search-results"
}

// ‫ استدعاء وظيفة البحث عند النقر على زر البحث أو الضغط على‬Enter


document.getElementById('search-bar').addEventListener('keydown', function
(e) {
if (e.key === 'Enter') {
searchImages();
}
});
</script>
</body>
</html>

You might also like