File size: 940 Bytes
fc1a1d8 976ccf1 fc1a1d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
<!DOCTYPE html>
<html>
<head>
<title>NJPad</title>
<style>
body {
font-family: Arial, sans-serif;
}
textarea {
width: 100%;
height: 300px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
resize: none;
}
button {
padding: 10px 20px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<h1>NJPad</h1>
<textarea id="editor"></textarea>
<p></p>
<button onclick="saveText()">Rate text</button>
<script>
function saveText() {
var text = document.getElementById("editor").value;
// Добавьте здесь код для сохранения текста
alert("Your text " + " {" + text + "} " + "is perfect");
}
</script>
</body>
</html>
|