-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (86 loc) · 4.62 KB
/
index.html
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Calendario con moment.js y JavaScript | CodeMundo</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="./css/calendar.css">
</head>
<body>
<div class="logo" style="display: flex; justify-content: center; align-items: center; margin-bottom: -54px;
">
<img style="max-width: 100%;
height: 300px;" src="img/001 (1).png" alt="">
</div>
<div class="root">
<div class="calendar" id="calendar">
</div>
</div>
<div class="container-fluid">
<div class="row justify-content-center" style="padding-top: 50px;">
<div class="col-md-6 col-xs-12">
<ol class="list-group list-group-numbered">
<li class="list-group-item d-flex justify-content-center align-items-start"
style="background-color: #212529; border-radius: 16px; border: 2px solid #fba007ad; border-color: #FBA007;">
<div class="ms-2 me-auto" style="color: #FBA007; background-color: #212529;">
<div class="fw-bold">Eventos</div>
</div>
</li>
<div id="fechas-contenedor">
</div>
</ol>
</div>
</div>
</div>
<!-- Modal
<div class="modal fade" id="staticBackdrop" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-body">
<div class="text-right"> <i class="fa fa-close close" data-dismiss="modal"></i> </div>
<div class="row">
<div class="col-md-6">
<div class="text-center mt-2">
<img src="https://i.imgur.com/3dG6dJo.jpg" width="200">
</div>
</div>
<div class="col-md-6">
<div class="text-white mt-5">
<h1 class="mb-0">Premium</h1>
<span class="intro-1">Take your writing to next level</span>
<div class="mt-4">
<span class="intro-2">Gain access to analytic tools, desktop apps, templates, read-through, features, and autp-translate all for the price of a pro subscription</span>
</div>
<div class="mt-4 mb-5">
<button class="btn btn-primary">25% off premium <i class="fa fa-long-arrow-right"></i></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/locale/es.js"></script>
<script type="text/javascript" type="module" src="./js/calendar.js"></script>
<script type="module" src="index.js"></script>
<script type="text/javascript">
let calendar = new Calendar('calendar');
</script>
</body>
</html>