<html>
<head><style>body {min-height: 300px;} input { font-size: 16px; } textarea { font-size: 16px; } </style></head>
<body>
<img src="https://mimo.app/r/snapchat.png">
<h1>Leave Feedback</h1>
<input id="emailInput" type="text" placeholder="Your email">
<br>
<textarea id="feedbackText" rows="3" cols="21" placeholder="Write your feedback here"></textarea>
<br>
<button onclick="send()">Send</button>
<script>function send() {
var email = document.getElementById("emailInput").value;
var feedback = document.getElementById("feedbackText").value;
console.log("Email: " + email);
console.log("Feedback: " + feedback);
}</script>
</body>
</html>]]>Make sure to code textarea
.