Insta
unknown
ada
3 years ago
881 B
9
Indexable
<!DOCTYPE html>
<html>
<head>
<title> Instagram Homepage </title>
<style>
/* Add your CSS styles here */
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.logo {
font-size: 20px;
font-weight: bold;
}
.search-container {
display: flex;
justify-content: center;
align-items: center;
}
.search-input {
padding: 10px;
border-radius: 10px;
border: 1px solid gray;
outline: none;
}
</style>
</head>
<body>
<header class="header">
<div class="logo"> Instagram </div>
<div class="search-container">
<input type="text" class="search-input" placeholder="Search">
</div>
</header>
</body>
</html>
Editor is loading...