Untitled
unknown
plain_text
3 years ago
628 B
7
Indexable
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Twitter Clone</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div class="header-left">
<h1>Twitter Clone</h1>
</div>
<div class="header-right">
<input type="text" placeholder="Search">
<button>Search</button>
<button>Tweet</button>
</div>
</header>
<main>
<div class="tweets">
<!-- Tweets will be added here dynamically -->
</div>
</main>
</body>
<script src="app.js"></script>
</html>
Editor is loading...