Skip to content

Instantly share code, notes, and snippets.

@m4rk3r
Created April 30, 2021 15:56
Show Gist options
  • Save m4rk3r/a7c596f5b4619f3ebb5c4f13e8e1bc6a to your computer and use it in GitHub Desktop.
Save m4rk3r/a7c596f5b4619f3ebb5c4f13e8e1bc6a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<script src="script.js" charset="utf-8" defer></script>
<style media="screen">
#message-bin {
width: 500px;
}
#message-bin li {
list-style-type: none;
border: solid 1px black;
border-radius: 5px;
margin: 5px 0;
}
.answer {
text-align: right;
}
</style>
</head>
<body>
<ul id="message-bin">
<li>what is your name?</li>
</ul>
<input id="text-input" type="text" name="" value="">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment