39 lines
1.2 KiB
HTML
Executable File
39 lines
1.2 KiB
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>Oppgave 10</title>
|
|
<link rel="stylesheet" href="../../../../resources/css/main.css">
|
|
<link rel="stylesheet" href="custom.css">
|
|
<script async src="./script.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Oppgave 10</h1>
|
|
|
|
<div class="center">
|
|
<div class="inline">
|
|
<label for="author">Author: </label>
|
|
<input type="text" id="author">
|
|
<label for="title">Title: </label>
|
|
<input type="text" id="title">
|
|
<button id=input style="
|
|
border-radius: 5px;
|
|
font-size: 15px;
|
|
padding: 5px;
|
|
">Input</button>
|
|
</div>
|
|
|
|
<div class="inline">
|
|
<button id="send">Send to localstorage</button>
|
|
<button id="get">Retrieve from localstorage</button>
|
|
</div>
|
|
|
|
<div class="textboxGrid">
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |