30 lines
1013 B
HTML
Executable File
30 lines
1013 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ChatsApp</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<!-- Font BOXICO-->
|
|
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
|
|
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<header>
|
|
<div class="header-content">
|
|
<h1>ChatsApp</h1>
|
|
<button class="settings-btn"><i class='bx bx-cog'></i></button> <!-- Disini we tambahin font icon biar gak manul lu bikin icon pake emote dari keyboard njir :| -->
|
|
</div>
|
|
</header>
|
|
<main>
|
|
<section id="chat-box"></section>
|
|
<form id="message-form">
|
|
<input type="text" id="message-input" placeholder="Type a message...">
|
|
<button type="submit">➤</button>
|
|
</form>
|
|
</main>
|
|
</div>
|
|
<script src="js/main.js"></script>
|
|
</body>
|
|
</html> |