test-space / index.html
smolSWE's picture
Implement basic Google clone layout and dummy search functionality
8451390 verified
raw
history blame
517 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Google Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="logo-container"><img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google Logo"></div><div class="search-container">
<input type="text" id="search-input" placeholder="Search Google">
<div id="suggestions"></div>
</div>
<div id="results-container">
</div>
<script src="script.js"></script>
</body>
</html>