This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IT2/html/tasks/chapter_8/notes/oppgave.html
2020-04-02 18:51:39 +02:00

36 lines
983 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" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Notes</title>
<link rel="stylesheet" href="../../../../resources/css/main.css" />
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script async src="./script.js"></script>
</head>
<body>
<h1>Notes</h1>
<div class="center">
<div class="inline">
<form id="noteInput">
<textarea id="noteInputText" style="resize: none;" rows="4" ></textarea>
<label for="noteInputSubmit">Legg til notis</label>
<input type="submit" id="noteInputSubmit">
</form>
</div>
<div id="notes" class="textboxGrid"></div>
<div class="error" id="testError">
<b>ERROR:</b>
Please insert something in the textarea
</div>
</div>
</body>
</html>