39 lines
682 B
HTML
39 lines
682 B
HTML
<html>
|
|
|
|
<head>
|
|
<meta name="" charset="UTF-8" content="">
|
|
<style>
|
|
* {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="./13.js"></script>
|
|
<h1>Vector de notas</h1>
|
|
|
|
<div id="listanotas"></div>
|
|
|
|
<form id="frm">
|
|
<select id="opciones">
|
|
<option value=0>Raul</option>
|
|
<option value=1>Antonio</option>
|
|
</select>
|
|
<input type="text" id="noter" name="" value="">
|
|
<button type="button" onclick="nota()">Añadir nota</button>
|
|
<button type="button" onclick="main()">Mostrar</button>
|
|
</form>
|
|
|
|
<div id="notificar"></div>
|
|
|
|
<div id="notadiv"></div>
|
|
|
|
<div id="notamedia"></div>
|
|
|
|
<div id="tabla"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|