-
Notifications
You must be signed in to change notification settings - Fork 0
/
noticias.html
78 lines (67 loc) · 3.63 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="author" content ="Sergio Truébano Robles" />
<meta name ="description" content ="Noticias sobre diversos temas" />
<meta name ="keywords" content ="noticias" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<title>Escritorio Virtual - Noticias</title>
<!-- añadir el elemento link de enlace a la hoja de estilo dentro del <head> del documento html -->
<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" />
<!--Computación-->
<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>
<header>
<h1>Escritorio Virtual</h1>
<nav>
<a href="index.html" title="Índice" accesskey="I" tabindex="1">Inicio</a>
<a href="sobremi.html" title="Sobre mi" accesskey="S" tabindex="2">Sobre mi</a>
<a href="noticias.html" title="Noticias" accesskey="N" tabindex="3">Noticias</a>
<a href="agenda.html" title="Agenda" accesskey="A" tabindex="4">Agenda</a>
<a href="meteorologia.html" title="Meteorología" accesskey="M" tabindex="5">Meteorología</a>
<a href="php/viajes.php" title="Viajes" accesskey="V" tabindex="6">Viajes</a>
<a href="juegos.html" title="Juegos" accesskey="J" tabindex="7">Juegos</a>
</nav>
</header>
<main>
<h2>Noticias</h2>
<section>
<h3>Crear noticias a partir de archivo de texto</h3>
<p>
<label for="noticias">Introducir nuevas notiticias: </label>
<input type="file" id="noticias" onchange="noticias.readInputFile(this.files)" title="Seleccionador de archivo de texto" tabindex="8"/>
</p>
</section>
<section data-element="creador">
<h3>Crear nueva noticia</h3>
<p>
<label for="titulo">Introduzca el título de la noticia: </label>
<input id="titulo" data-element="titulo" data-state="init" type="text" title="Campo para título de noticia" tabindex="9"/>
</p>
<p>
<label for="subtitulo">Introduzca el subtítulo de la noticia: </label>
<input id="subtitulo" data-element="subtitulo" data-state="init" type="text" title="Campo para subtítulo de noticia" tabindex="10"/>
</p>
<p>
<label for="texto">Introduzca el texto de la noticia: </label>
<input id="texto" data-element="texto" data-state="init" type="text" title="Campo para texto de noticia" tabindex="11"/>
</p>
<p>
<label for="autor">Introduzca el autor de la noticia: </label>
<input id="autor" data-element="autor" data-state="init" type="text" title="Campo para autor de noticia" tabindex="12"/>
</p>
<p>
<label for="nueva">Añadir la noticia creada: </label>
<button id="nueva" onclick="noticias.addNew()" tabindex="13" title="Introduce la noticia creada al conjunto de noticias">Introducir nueva noticia</button>
</p>
</section>
</main>
</body>
</html>