-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
475 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Calendario</title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="Calendario de carreras del piloto" /> | ||
<meta name ="keywords" content ="calendario, Formula1, F1" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Calendario</h2> | ||
<p> En desarrollo</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Circuito</title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="Información del proximo circuito en el que compite" /> | ||
<meta name ="keywords" content ="circuito, carrera, formula 1, F1" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Circuito</h2> | ||
<p> En desarrollo</p> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* Alfredo Jirout Cid UO288443*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* Alfredo Jirout Cid UO288443*/ | ||
/* | ||
Paleta de colores | ||
Cyan #2ff3e0 | ||
Gold #f8d210 | ||
Pink #fa26a0 | ||
rojo #850000 | ||
*/ | ||
body{ | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
color: black; | ||
background-color: #2ff3e0; | ||
} | ||
/*Especificidad 1*/ | ||
header{ | ||
background-color: #850000; | ||
color: #f8d210; | ||
} | ||
|
||
/* | ||
el color de fonde se hereda del Header | ||
Especificidad 2 | ||
*/ | ||
nav a { | ||
color: #2ff3e0; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Index </title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="documento inicial del F1 Desktop" /> | ||
<meta name ="keywords" content ="index, índice, inicio, inicial, F1" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Index</h2> | ||
<p> En desarrollo</p> | ||
|
||
</body> | ||
|
||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Juegos</title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="Juegos de la web" /> | ||
<meta name ="keywords" content ="F1, formula, 1, juegos" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Juegos</h2> | ||
<p> En desarrollo</p> | ||
</body> | ||
|
||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Meteorologia</title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="Meteorologia de la proxima carrera" /> | ||
<meta name ="keywords" content ="F1, Meteorologia, timpo" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Meteorologia</h2> | ||
<p> En desarrollo</p> | ||
</body> | ||
|
||
</html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<!DOCTYPE HTML> | ||
|
||
<html lang="es"> | ||
|
||
<head> | ||
<!-- Datos que describen el documento --> | ||
<meta charset="UTF-8" /> | ||
<title>F1 Desktop - Noticias</title> | ||
<meta name ="author" content ="Alfredo Jirout Cid" /> | ||
<meta name ="description" content ="Noticias sobre el piloto" /> | ||
<meta name ="keywords" content ="Noticias,F1" /> | ||
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- Datos con el contenidos que aparece en el navegador --> | ||
<h1>F1 Desktop</h1> | ||
<nav> | ||
<a href="index.html" title="inicio"> inicio </a> | ||
<a href="piloto.html" title="piloto"> Piloto </a> | ||
<a href="noticias.html" title="noticias"> Noticias </a> | ||
<a href="calendario.html" title="calendario"> Calendario </a> | ||
<a href="meteorologia.html" title="meteoriologia"> Meteorología </a> | ||
<a href="circuito.html" title="circuito"> Circuito </a> | ||
<a href="viajes.html" title="viajes"> Viajes </a> | ||
<a href="juegos.html" title="juegos"> Juegos </a> | ||
</nav> | ||
<h2>Noticia</h2> | ||
<p> En desarrollo</p> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.