Added LMSGI project.
This commit is contained in:
parent
95eca0e147
commit
33c41229b3
BIN
1/LMSGI/web-ceu/imgs/favicon-16x16.png
Normal file
BIN
1/LMSGI/web-ceu/imgs/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
1/LMSGI/web-ceu/imgs/logo.jpg
Normal file
BIN
1/LMSGI/web-ceu/imgs/logo.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
44
1/LMSGI/web-ceu/index.html
Normal file
44
1/LMSGI/web-ceu/index.html
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="es" >
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<meta http-equiv="Content-Language" content="es" />
|
||||||
|
<title>Fundación San Pablo Andalucía CEU</title>
|
||||||
|
<link rel="icon" href="imgs/favicon-16x16.png" type="image/png" />
|
||||||
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<a href="index.html" ><img src="imgs/logo.jpg" alt="Logo CEU" title="Logo CEU" class="logo" /></a>
|
||||||
|
</header>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#" >Conócenos</a></li>
|
||||||
|
<li><a href="#" >Estudios</a></li>
|
||||||
|
<li><a href="#" >Alumno</a></li>
|
||||||
|
<li><a href="#" >Internationalisation</a></li>
|
||||||
|
<li><a href="#" >Vida CEU</a></li>
|
||||||
|
<li><a href="#" >Actualidad</a></li>
|
||||||
|
<li><a href="#" >Investigación</a></li>
|
||||||
|
<li><a href="#" >Admisión</a></li>
|
||||||
|
<li><a href="#" >Campus Virtuales</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<main>
|
||||||
|
<div class="info-card" >
|
||||||
|
<h2>Grados y Master</h2>
|
||||||
|
<h3>CEU Cardenal Spínola</h3>
|
||||||
|
</div>
|
||||||
|
<div class="info-card" >
|
||||||
|
<h2>Posgrados</h2>
|
||||||
|
<h3>Instituto de Posgrado</h3>
|
||||||
|
</div>
|
||||||
|
<div class="info-card" >
|
||||||
|
<h2>Formación Profesional</h2>
|
||||||
|
<h3>Centro de Estudios Profesionales CEU</h3>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
36
1/LMSGI/web-ceu/style.css
Normal file
36
1/LMSGI/web-ceu/style.css
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
header img.logo {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav > ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0 auto;
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: #33f;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav > ul > li {
|
||||||
|
float: left;
|
||||||
|
display: inline;
|
||||||
|
padding: 5px 8px;
|
||||||
|
transition: background-color 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav > ul > li:hover {
|
||||||
|
background-color: #55f;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav > ul > li > a {
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.info-card {
|
||||||
|
width: 30%;
|
||||||
|
text-align: center;
|
||||||
|
display: inline;
|
||||||
|
float: left;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user