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/highcharts/oppgave.html

46 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>Highcharts</title>
<link rel="stylesheet" href="../../../../resources/css/main.css" />
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="./highchartsTheme.js"></script>
<script async src="./script.js"></script>
</head>
<body>
<h1>Highcharts</h1>
<div class='center'>
Chart for fruits below
</div>
<div id='chart1' class='chart'></div>
<div class='center'>
<div class="inline">
<form id='fruitForm'>
<label for="bananaInput">Bananas: </label>
<input type="number" id="bananaInput" min="0" max="100" step="1" required>
<label for="appleInput">Apples: </label>
<input type="number" id="appleInput" min="0" max="100" step="1" required>
<input type="submit">
</form>
</div>
<div id="errorBox"></div>
<table class="inlineTable" id="table1">
<tr>
<th>Bananas</th>
<th>Apples</th>
</tr>
</table>
</div>
</body>
</html>