-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.71 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.71 KB
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
<!--HTML de app web para formatos que atiende la sub-dirección de Nóminas-->
<!--Alejandro Hernández Mitre-->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formatos_Subdirección</title>
<link rel="stylesheet" href="./formatosnomina.css" /> <!--aqui se enlaza el css con el html -->
</head>
<body>
<figure> <!--figure funciona para enmarcar un algo , en este caso una imagen-->
<img width="220" height="100"
src="sev.svg "
alt="imagen SEV"/>
<figcaption> <!--figcaption es para poner una descripcion a la imagen-->
<h1> Dirección de Nómina Federal</h1>
<section> Formatos Dirección de Nóminas </section>
<br>
<br>
Servicios web :
<br> <!--para iniciar una lista desordenanda-->
<p> Servicios web que ofrece la dirección de Nóminas:</p>
<li><a href= "notificacciones_pago.html" target="_blank"> SOLICITUD DE NOTIFICACIONES DE PAGO</a></li>
<li><a href= "incorporacion_cambiosdecuenta.html" target="_blank"> FORMATO DE INCORPORACIÓN O CAMBIO DE CUENTAS BANCARIAS PARA BENEFICIARIOS DE PENSIÓN ALIMENTICIA FEDERAL</a></li>
<br>
<br>
<!--para insertar un VIDEO-->
<video width="280" height="240" controls preload="auto" autoplay muted> <!--con las etiquetas de tamaño definimos medidas más ideales para la visualización del video-->
<source src="video.mp4" /> <!--diferentes fuentes para el mismo video,el navegador decide-->
</video>
<script src="formatosnomina.js"></script>
</body>
</html>