first design

This commit is contained in:
Israel Paredes 2023-01-23 18:08:10 -06:00
parent 34be36a397
commit 890b005a91
2 changed files with 2576 additions and 0 deletions

2516
images/logovilla-01.svg Normal file

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 270 KiB

60
index.html Normal file
View file

@ -0,0 +1,60 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: aliceblue;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
.download-button {
background-color: brown;
border: none;
color: aliceblue;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
}
.download-button:hover {
background-color: grey;
}
</style>
</head>
<body>
<header style="padding-top: 10px; font-size: 26pt; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; color: brown;">Office Gob</header>
</body>
<main>
<div class="p">
<img src="images/logovilla-01.svg" >
<h2>Office 7.4</h2>
<a href="https://repos.libreoffice.gob.mx/windows/general/x86_64/Office_7.4.4.0_Win_x86-64_en-MX_es.msi" download class="download-button">Descargar</a>
</div>
</main>
<div id="footer" class="width">
<br>
<br>
<br>
Av. Constituyentes 161 piso 4, San Miguel Chapultepec II Secc. Miguel Hidalgo, 11850 Ciudad de México, CDMX,
<br>
Tel. 50 93 53 00 Ext. 3469
<br>
<a onclick="showCedn();" href="javascript:void(0);">www.gob.mx/cedn</a>
</div>
<script>
function showCedn() {cednwnd= window.open('https://www.gob.mx/cedn', 'width=890,heigth=330,left=200,top=200,menubar=no,status=yes,toolbar=no')}
</script>
</html>