-
Notifications
You must be signed in to change notification settings - Fork 0
/
noticias.html
69 lines (56 loc) · 2.72 KB
/
noticias.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>Escritorio Virtual - Noticias</title>
<meta name="author" content="Álex Fernández Salé" />
<meta name="description" content="Página de noticias de mi escritorio virtual" />
<meta name="keywords" content="noticias, escritorio, virtual" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<link rel="stylesheet" type="text/css" href="estilo/noticias.css" />
<link rel="icon" href="multimedia/imagenes/favicon.ico" />
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="js/noticias.js"></script>
</head>
<body>
<!-- Datos con el contenidos que aparece en el navegador -->
<header>
<nav>
<a accesskey="I" tabindex="1" href="index.html">Inicio</a>
<a accesskey="S" tabindex="2" href="sobremi.html">Sobre mi</a>
<a accesskey="N" tabindex="3" href="noticias.html">Noticias</a>
<a accesskey="A" tabindex="4" href="agenda.html">Agenda</a>
<a accesskey="M" tabindex="5" href="meteorologia.html">Meteorología</a>
<a accesskey="V" tabindex="6" href="viajes.php">Viajes</a>
<a accesskey="J" tabindex="7" href="juegos.html">Juegos</a>
</nav>
<h1>Escritorio Virtual</h1>
</header>
<main>
<h2>Noticias</h2>
<section data-name="seeNews">
<h3>Leer Noticias</h3>
</section>
<label for="noticias">Seleccione un archivo TXT que contenga noticias:</label>
<input type="file" id="noticias" onchange="noticias.readInputFile(this.files)"/>
<section data-name="addNew">
<h3>Añadir noticia</h3>
<form>
<label for="titular">Titular:</label>
<input type="text" id="titular" name="titular" required/>
<label for="subtitulo">Subtítulo:</label>
<input type="text" id="subtitulo" name="subtitulo" required/>
<label for="contenido">Contenido:</label>
<textarea name="contenido" id="contenido" rows="4" required></textarea>
<label for="autor">Autor:</label>
<input type="text" id="autor" name="autor" required/>
</form>
<button onclick="noticias.addNew()"> Enviar </button>
</section>
</main>
</body>
</html>