-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClock.html
More file actions
56 lines (48 loc) · 1.79 KB
/
Clock.html
File metadata and controls
56 lines (48 loc) · 1.79 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<title> RELOG DIGITAL </title>
<!-- __________________________________________________________
|____________ARGEGAR BIBLIOTECAS Y LIBRERIAS______________|
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=divece-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="css/StyleClock.css">
<link href='https://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
</head>
<body>
<!-- ______________________________________________________________________
|____________CREACIÓN DE RELOJ CON CSS Y JAVASCRIPT____________________|
-->
<div class="wrap">
<!--CENTRAR EL RELOJ-->
<div class="widget">
<!--DISEÑO-->
<!--DIV PARA FECHA-->
<div class="fecha">
<p id="DiaSemana" class="DiaSemana"></p>
<p id="Dia" class="Dia"></p>
<p> de </p>
<p id="Mes" class="Mes"></p>
<p> del </p>
<P id="Year" class="Year"></P>
</div>
<!--DIV PARA RELOJ-->
<div class="reloj">
<p id="Horas" class="Horas"></p>
<p> : </p>
<p id="Minutos" class="Minutos"></p>
<p> : </p>
<div class="caja-segundos">
<!--CRCEAMOS CAJA PARA AM/PM Y SEGUNDOS-->
<p id="AMPM" class="AMPM"></p>
<p id="Segundos" class="Segundos"></p>
</div>
</div>
</div>
</div>
<script src="js/Reloj.js"></script>
<!--ENLAZAR ARCHIVO JAVASCRIPT-->
</body>
</html>
<!-- PRUEBA DE COMENTARIO GITHUB -->