-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreloj.html
More file actions
86 lines (69 loc) · 2.28 KB
/
reloj.html
File metadata and controls
86 lines (69 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Proyecto con JavaScript</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link id="theme" rel="stylesheet" type="text/css" href="css/green.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js" integrity="sha512-qTXRIMyZIFb8iQcfjXWCO8+M5Tbc38Qi5WzdPOYZHIlZpzBHG3L3by84BBBOiRGiEb7KKtAOAs5qYdUiZiQNNQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<div id="selector-theme">
<div id="to-green"></div>
<div id="to-red"></div>
<div id="to-blue"></div>
</div>
<section id="global">
<!-- CABECERA -->
<header>
<div id="logo">
<h1>Proyecto JS</h1>
</div>
<div class="clearfix"></div>
<nav id="menu">
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="reloj.html">Reloj</a></li>
<li><a href="about.html">Sobre mi</a></li>
<li><a href="contact.html">Contacto</a></li>
</ul>
</nav>
</header>
</div>
<!-- CONTENIDO -->
<section id="content">
<div id="box">
<!-- CARGAR RELOJ -->
<div id="reloj"></div>
</div>
<aside id="sidebar">
<div id="about">
<h4><span>¿Quien soy?</span></h4>
<img src="img/caracoles.jpg" />
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus fermentum, ligula aliquam egestas feugiat, nunc velit sagittis purus, in tempor urna elit ut risus.</p>
</div>
<div id="login">
<h4><span>Identificate</span></h4>
<form>
<label for="name">Nombre</label>
<input type="text" name="name" id="form_name" />
<label for="email">Correo</label>
<input type="text" name="email" />
<label for="password">Contraseña</label>
<input type="text" name="password" />
<input type="submit" value="Entrar" />
</form>
</div>
</aside>
<div class="clearfix"></div>
</section>
</section>
<footer>
Proyecto JavaScript - Bryan Santos ©
<a href="#" class="subir">Ir arriba</a>
</footer>
</body>
</html>