-
Notifications
You must be signed in to change notification settings - Fork 0
/
noticias.html
72 lines (62 loc) · 2.28 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="author" content ="David Gonzalez" />
<meta name ="description" content ="Noticias" />
<meta name ="keywords" content ="noticias" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<title>F1Desktop - Noticias</title>
<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/article_elements.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>
<h1><a href="index.html">F1Desktop</a></h1>
<nav>
<a href="index.html">Index</a>
<a href="calendario.html">Calendario</a>
<a href="juegos.html">Juegos</a>
<a href="meteorologia.html">Meteorologia</a>
<a class="active" href="noticias.html">Noticias</a>
<a href="piloto.html">Piloto</a>
<a href="viajes.html">Viajes</a>
<a href="circuito.html">Circuito</a>
</nav>
</header>
<p>Estas en: <a href="index.html">Indice</a> >> Noticias</p>
<h2>Noticias</h2>
<script>
const noticias = new Noticias();
</script>
<p>
<input type="file" onchange="noticias.readInputFile(this.files);">
</p>
<section>
<h3> Añadir noticia </h3>
<label>
<p>Titular:</p>
<input type="text" name="titular">
</label>
<label>
<p>Entradilla:</p>
<input type="text" name="entradilla">
</label>
<label>
<p>Autor:</p>
<input type="text" name="autor">
</label>
<button onclick="noticias.crearNoticia();">Crear</button>
</section>
<section>
</section>
</body>
</html>