Compare commits
29 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dc642225b4 | |||
| ebdba6cab1 | |||
| 3a1578e417 | |||
| 0431f80e7e | |||
| e8941c8809 | |||
| f517c4f735 | |||
| 844520911e | |||
| 5dbf7565dd | |||
| 2135bd801c | |||
| aebcd3258f | |||
| 983f2d5540 | |||
| a834e480dc | |||
| fbf733c0b0 | |||
| 8ab49cf785 | |||
| 2eea1cf50a | |||
| f1afe16008 | |||
| 4bb0620368 | |||
| d423c2b639 | |||
| 929084289e | |||
| 0c681a800b | |||
| d363fdf66b | |||
| 734f4f4aa2 | |||
| d18a57aa33 | |||
| 3854b8de1b | |||
| 10ecef4d3b | |||
| 574512d6b4 | |||
| 12338d36b5 | |||
| afc4729b41 | |||
| 474d273971 |
Binary file not shown.
|
After Width: | Height: | Size: 1.8 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 447 KiB |
@@ -0,0 +1,412 @@
|
|||||||
|
#computo {
|
||||||
|
width: 100%;
|
||||||
|
height: 93vh;
|
||||||
|
background: url("../Computo/cedetec_01.png") top center;
|
||||||
|
background-size: cover;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo:before {
|
||||||
|
content: "";
|
||||||
|
background: rgba(0,0,0,0.527);
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .container {
|
||||||
|
position: relative;
|
||||||
|
padding-top: 10%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo h1 {
|
||||||
|
font-size: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 40px;
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo h1 span {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo h2 {
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
/* background-color: rgba(30, 60, 112, 0.8); */
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
font-size: 22px;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo h2 span {
|
||||||
|
color: #ffc451;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box {
|
||||||
|
/*padding: ;*/
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
text-align: center;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box i {
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 1;
|
||||||
|
color: #ffc451;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box h3 {
|
||||||
|
font-weight: 700;
|
||||||
|
margin-top: auto;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 1;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 26px;
|
||||||
|
background-color: rgba(187, 136, 0, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box h3 a {
|
||||||
|
color: #fff;
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box h3 a:hover {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .icon-box:hover {
|
||||||
|
border-color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
#computos {
|
||||||
|
background-attachment: fixed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
#computos {
|
||||||
|
height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computos h1 {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computos h2 {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computos .navbar-toggler {
|
||||||
|
font-size: 13px;
|
||||||
|
padding: 0px;
|
||||||
|
border: none;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .text-container {
|
||||||
|
padding: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .transparent-cart {
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .transparent-cart::before{
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
border-left: 6px solid #1e3c70;
|
||||||
|
border-top: 6px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#computo .transparent-cart::after{
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10px;
|
||||||
|
border-right: 6px solid #1e3c70;
|
||||||
|
border-bottom: 6px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
#computo .transparent-cart2{
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(14, 26, 80, 0.479);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
|
-webkit-backdrop-filter: blur(3px);
|
||||||
|
box-shadow: 0 4px 30px rgba(7, 26, 194, 0.418);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#computo .cta-btn {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 12px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
padding: 4px 18px;
|
||||||
|
display: inline-flex;
|
||||||
|
border-radius: 18px;
|
||||||
|
transition: 0.2s;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 2px solid #bb8800;
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center div .contenido-centrado {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Centro ul li a {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .cta-btn:hover {
|
||||||
|
background: #fff;
|
||||||
|
border-color: #fff;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myTab .active {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#myTab{
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana .table th {
|
||||||
|
text-align: center;
|
||||||
|
background-color: #1e3c70;
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana .table tr td {
|
||||||
|
color: #1e3c70;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana .container {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana .contenedor {
|
||||||
|
padding: 10px;
|
||||||
|
overflow-x: scroll !important;
|
||||||
|
height: fit-content;
|
||||||
|
/*flex-wrap: nowrap !important;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana ul li {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entresemana ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 5px;
|
||||||
|
/* border: 1px solid #000; */
|
||||||
|
width: fit-content;
|
||||||
|
padding: 10px !important;
|
||||||
|
color:#bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tab-Entresemana .active {
|
||||||
|
color:#1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
#Entresemana div .contendor {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.line {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line ::before {
|
||||||
|
content: "";
|
||||||
|
background-color: #bb8800;
|
||||||
|
display: inline-block;
|
||||||
|
width: 3px;
|
||||||
|
height: 100%;
|
||||||
|
left: -1rem;
|
||||||
|
position: absolute;
|
||||||
|
padding-top: 1rem;
|
||||||
|
z-index: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line ::after {
|
||||||
|
content: "";
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -19px;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
z-index: 999;
|
||||||
|
border: 1px solid #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pr {
|
||||||
|
padding-right: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Navbar{
|
||||||
|
background: url(../assets/img/bg/solid.png);
|
||||||
|
height: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Navbar ul li a{
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
#Navbar ul li a:hover{
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
#myTabContent{
|
||||||
|
padding-left: 10px !important;
|
||||||
|
}
|
||||||
|
#myTabContent ul li a{
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#myTabContent ul li a:hover{
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
#myTabContent .active{
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-2{
|
||||||
|
margin-top: .5rem !important;
|
||||||
|
}
|
||||||
|
#tab-cursos{
|
||||||
|
font-size: x-large;
|
||||||
|
}
|
||||||
|
.tab-content .active{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#Center .div-flex .active {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .nav-tabs .active {
|
||||||
|
color: #1e3c70;
|
||||||
|
background-color: #ffff;
|
||||||
|
}
|
||||||
|
#Center .b-ground {
|
||||||
|
background: url("../../../assets/img/bg/solid.png");
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
#Center table thead {
|
||||||
|
color: #ffff;
|
||||||
|
font-size: medium;
|
||||||
|
}
|
||||||
|
#Center p {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#Center .div-flex .active {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 993px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.div-flex .line {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
#Center .div-flex .boxx nav .nav-item {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .normal .nav-link {
|
||||||
|
border: 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#Center .boxx {
|
||||||
|
height: 8vh;
|
||||||
|
margin-right: 10px;
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#Center .color {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#Center .contenido-centrado-negro {
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
margin: 35px 0px;
|
||||||
|
border-top: 2px solid #bb8800;
|
||||||
|
padding: 10px 0px;
|
||||||
|
}
|
||||||
|
#Center .row {
|
||||||
|
margin: 1rem;
|
||||||
|
padding: 1rem;
|
||||||
|
border-bottom: #b3b1b1 solid 2px;
|
||||||
|
}
|
||||||
|
#Center .accordion-body a i {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
#Center .accordion-body a {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#Center div .line-accor {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
#Center .accordion-header .collapsed {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
#Center .accordion-header button {
|
||||||
|
background-color: #bb8800;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
#Center .div-flex .active {
|
||||||
|
box-shadow: 2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
|
#Center .accordion-button:focus {
|
||||||
|
box-shadow: 2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .icon-box {
|
||||||
|
/*padding: ;*/
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
text-align: center;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,196 @@
|
|||||||
|
#hero {
|
||||||
|
width: 100%;
|
||||||
|
height: 93vh;
|
||||||
|
background: url("../Computo/cedetec_01.png") top center;
|
||||||
|
background-size: cover;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#Center div .contenido-centrado {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
#hero .transparent-cart {
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
#hero .transparent-cart ::after {
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10px;
|
||||||
|
border-right: 6px solid #1e3c70;
|
||||||
|
border-bottom: 6px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
#hero .transparent-cart ::before {
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
border-left: 6px solid #1e3c70;
|
||||||
|
border-top: 6px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .transparent-cart2{
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(14, 26, 80, 0.479);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
|
-webkit-backdrop-filter: blur(3px);
|
||||||
|
box-shadow: 0 4px 30px rgba(7, 26, 194, 0.418);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .carousel h3 {
|
||||||
|
color:#bb8800;
|
||||||
|
font-size: xx-large;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
#hero .carousel h4 {
|
||||||
|
color: #bb8800;
|
||||||
|
font-size: xx-large;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
#hero .carousel p {
|
||||||
|
color: white
|
||||||
|
}
|
||||||
|
#Center ul li a {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
#Center .div-flex .active {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#Center .nav-tabs .active {
|
||||||
|
color: #1e3c70;
|
||||||
|
background-color: #ffff;
|
||||||
|
}
|
||||||
|
#Center .b-ground {
|
||||||
|
background: url("../../../assets/img/bg/solid.png");
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
#Center table thead {
|
||||||
|
color: #ffff;
|
||||||
|
font-size: medium;
|
||||||
|
}
|
||||||
|
#Center p {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
#Center .div-flex .active {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (min-width: 993px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.div-flex .line {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
#Center .div-flex .boxx nav .nav-item {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .normal .nav-link {
|
||||||
|
border: 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#Center .boxx {
|
||||||
|
height: 8vh;
|
||||||
|
margin-right: 10px;
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
#Center .color {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#Center .contenido-centrado-negro {
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
margin: 35px 0px;
|
||||||
|
border-top: 2px solid #bb8800;
|
||||||
|
padding: 10px 0px;
|
||||||
|
}
|
||||||
|
#Center .row {
|
||||||
|
margin: 1rem;
|
||||||
|
padding: 1rem;
|
||||||
|
border-bottom: #b3b1b1 solid 2px;
|
||||||
|
}
|
||||||
|
#Center .accordion-body a i {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
#Center .accordion-body a {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
#Center div .line-accor {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
#Center .accordion-header .collapsed {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
#Center .accordion-header button {
|
||||||
|
background-color: #bb8800;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
#Center .div-flex .active {
|
||||||
|
box-shadow: 2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
|
#Center .accordion-button:focus {
|
||||||
|
box-shadow: 2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .icon-box {
|
||||||
|
/*padding: ;*/
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
text-align: center;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .icon-box i {
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 1;
|
||||||
|
color: #ffc451;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .icon-box h3 {
|
||||||
|
font-weight: 700;
|
||||||
|
margin-top: auto;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 1;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 26px;
|
||||||
|
background-color: rgba(187, 136, 0, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .icon-box h3 a {
|
||||||
|
color: #fff;
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .icon-box h3 a:hover {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#hero .icon-box:hover {
|
||||||
|
border-color: #1e3c70;
|
||||||
|
}
|
||||||
@@ -0,0 +1,175 @@
|
|||||||
|
#computo {
|
||||||
|
width: 100%;
|
||||||
|
height: 93vh;
|
||||||
|
background: linear-gradient(rgba(255, 217, 0, 0.1), rgba(255, 247, 0, 0.096)),
|
||||||
|
url("../css/img/cedetec.jpeg") top center;
|
||||||
|
background-size: cover;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center div .contenido-centrado {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .transparent-cart {
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(112, 112, 112, 0.027);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.082);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .transparent-cart ::after {
|
||||||
|
content: "";
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10px;
|
||||||
|
border-right: 6px solid #bb8800;
|
||||||
|
border-bottom: 6px solid #bb8800;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .transparent-cart ::before {
|
||||||
|
content: "";
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
border-left: 6px solid #bb8800;
|
||||||
|
border-top: 6px solid #bb8800;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .carousel h3 {
|
||||||
|
color: #1e3c70;
|
||||||
|
font-size: xx-large;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .carousel h4 {
|
||||||
|
color: #1e3c70;
|
||||||
|
font-size: xx-large;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#computo .carousel p {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center ul li a {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .div-flex .active {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .nav-tabs .active {
|
||||||
|
color: #1e3c70;
|
||||||
|
background-color: #ffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .b-ground {
|
||||||
|
background: url("../../../assets/img/bg/solid.png");
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center table thead {
|
||||||
|
color: #ffff;
|
||||||
|
font-size: medium;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center p {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .div-flex .active {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 993px) {
|
||||||
|
#Center .div-flex {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.div-flex .line {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
#Center .div-flex .boxx nav .nav-item{
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
#Center .normal .nav-link {
|
||||||
|
border: 0;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .boxx {
|
||||||
|
height: 8vh;
|
||||||
|
margin-right: 10px;
|
||||||
|
text-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .color {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .contenido-centrado-negro {
|
||||||
|
text-align: center;
|
||||||
|
color: #000;
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
margin: 35px 0px;
|
||||||
|
border-top: 2px solid #bb8800;
|
||||||
|
padding: 10px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .row {
|
||||||
|
margin: 1rem;
|
||||||
|
padding: 1rem;
|
||||||
|
border-bottom: #b3b1b1 solid 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .accordion-body a i {
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
#Center .accordion-body a {
|
||||||
|
color:#bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center div .line-accor {
|
||||||
|
border-bottom: 2px solid #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .accordion-header .collapsed {
|
||||||
|
background-color: #ffffff;
|
||||||
|
color:#000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .accordion-header button {
|
||||||
|
background-color: #bb8800;
|
||||||
|
color:#ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .div-flex .active {
|
||||||
|
box-shadow: 2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Center .accordion-button:focus {
|
||||||
|
box-shadow:2px 2px 2px 2px #b3b1b1;
|
||||||
|
border-color: #b3b1b1;
|
||||||
|
}
|
||||||
@@ -0,0 +1,870 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="es">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
||||||
|
|
||||||
|
<title>FES Acatlán</title>
|
||||||
|
<meta content="" name="descriptison" />
|
||||||
|
<meta content="" name="keywords" />
|
||||||
|
|
||||||
|
<!-- Favicons -->
|
||||||
|
<link href="../assets/img/icon/icon.png" rel="icon" />
|
||||||
|
<link href="../assets/img/icon/icon.png" rel="apple-touch-icon" />
|
||||||
|
|
||||||
|
<!-- Ext CSS -->
|
||||||
|
<link
|
||||||
|
href="../assets/Ext/bootstrap/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link href="../assets/Ext/icofont/icofont.min.css" rel="stylesheet" />
|
||||||
|
<link href="../assets/Ext/boxicons/css/boxicons.min.css" rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
href="../assets/Ext/owl.carousel/assets/owl.carousel.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link href="../assets/Ext/aos/aos.css" rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- Main CSS -->
|
||||||
|
<link href="../assets/css/main.css" rel="stylesheet" />
|
||||||
|
<link rel="stylesheet" href="computo.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- ======= Header ======= -->
|
||||||
|
<!--<header id="header" class="fixed-top ">-->
|
||||||
|
<header id="header">
|
||||||
|
<div class="container d-flex align-items-center justify-content-between">
|
||||||
|
<div class="">
|
||||||
|
<a href="https://www.unam.mx/" target="_blank"
|
||||||
|
><img
|
||||||
|
src="../assets/img/escudos/logo_unam-b.png"
|
||||||
|
alt=""
|
||||||
|
class="img-fluid logo"
|
||||||
|
/></a>
|
||||||
|
<a href="https://www.acatlan.unam.mx/" target="_blank" class="mr-auto"
|
||||||
|
><img
|
||||||
|
src="../assets/img/escudos/escudo-b2.png"
|
||||||
|
alt=""
|
||||||
|
class="img-fluid logo-unam"
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1>FES <span>Acatlán</span></h1>
|
||||||
|
|
||||||
|
<nav class="nav-menu d-none d-lg-block">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">Normatividad</a></li>
|
||||||
|
<li><a href="#">Tienda Acatlán</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<!-- .nav-menu -->
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<nav class="nav-menu-2 d-none d-lg-block">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">Inicio</a></li>
|
||||||
|
<li><a href="#">Licenciaturas</a></li>
|
||||||
|
<li><a href="#">Posgrados</a></li>
|
||||||
|
<li><a href="#">Investigación</a></li>
|
||||||
|
<li><a href="#">Cursos y Diplomados</a></li>
|
||||||
|
<li><a href="#">Otros</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<!-- .nav-menu -->
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<!-- End Header -->
|
||||||
|
|
||||||
|
<!-- ======= Hero Section ======= -->
|
||||||
|
<section id="computo" class="d-flex align-items-center">
|
||||||
|
<div class="container" data-aos="fade-up">
|
||||||
|
<div class="row justify-content-between align-items-center" data-aos="fade-up" data-aos-delay="150">
|
||||||
|
<div class="col-lg-6 col-sm-12 transparent-cart">
|
||||||
|
<h1 class="" style="text-align: center; color: #ffc115;"><i class="bx bx-laptop"></i>
|
||||||
|
Cursos de computo
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-6">
|
||||||
|
<div
|
||||||
|
id="carouselExampleControls"
|
||||||
|
class="carousel slide"
|
||||||
|
data-bs-ride="carousel"
|
||||||
|
>
|
||||||
|
<div class="carousel-inner">
|
||||||
|
<div
|
||||||
|
class="carousel-item active transparent-cart2"
|
||||||
|
>
|
||||||
|
<h3 style="color: #ffc115;">¿Quiénes somos?</h3>
|
||||||
|
<p style="text-align: justify;">
|
||||||
|
El Área de Cursos del Centro de Desarrollo Tecnológico, se
|
||||||
|
distingue por ser una de las más importantes y
|
||||||
|
representativas en la Zona Norte del Área Metropolitana,
|
||||||
|
como proveedora de conocimiento tecnológico y actualizado
|
||||||
|
en: software, capacitación y certificaciones. La producción
|
||||||
|
de los materiales, así como de los conocimientos que se
|
||||||
|
manejan por parte del personal que labora en esta área es de
|
||||||
|
consideración primordial para ofrecer un servicio de calidad
|
||||||
|
y alto índice de satisfacción de acuerdo a las expectativas
|
||||||
|
de los participantes, en cada una de sus actividades.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item transparent-cart2">
|
||||||
|
<h4 style="color: #ffc115;">Misión</h4>
|
||||||
|
<p style="text-align: justify;">
|
||||||
|
Preparar a los usuarios en el uso correcto de las
|
||||||
|
Tecnologías de la Información y Comunicación para que a
|
||||||
|
través de ellas logren superarse y distinguirse de entre los
|
||||||
|
demás al conjuntarlas con el conocimiento de su propia área
|
||||||
|
de experiencia.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item transparent-cart2">
|
||||||
|
<h4 style="color: #ffc115;">Visión</h4>
|
||||||
|
<p style="text-align: justify;">
|
||||||
|
Lograr una alfabetización digital que reduzca la brecha
|
||||||
|
generacional entre los novicios y los expertos en el uso de
|
||||||
|
las Tecnologías de la Información y Comunicación.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
class="carousel-control-prev"
|
||||||
|
type="button"
|
||||||
|
data-bs-target="#carouselExampleControls"
|
||||||
|
data-bs-slide="prev"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="carousel-control-prev-icon"
|
||||||
|
aria-hidden="true"
|
||||||
|
></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="carousel-control-next"
|
||||||
|
type="button"
|
||||||
|
data-bs-target="#carouselExampleControls"
|
||||||
|
data-bs-slide="next"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="carousel-control-next-icon"
|
||||||
|
aria-hidden="true"
|
||||||
|
></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- End Hero -->
|
||||||
|
|
||||||
|
<main id="main">
|
||||||
|
<section
|
||||||
|
id="Center"
|
||||||
|
class="d-flex align-items-center justify-content-center flex-column pt-0"
|
||||||
|
>
|
||||||
|
<div id="Navbar" class="container-fluid align-content-center">
|
||||||
|
<ul id="myTab" class="nav tab d-flex justify-content-between w-100">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="convocatoria-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tab"
|
||||||
|
href="#convocatoria"
|
||||||
|
class="nav-link active"
|
||||||
|
aria-controls="convocatoria"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
|
Convocatoria
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="temario-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tab"
|
||||||
|
href="#temario"
|
||||||
|
class="nav-link"
|
||||||
|
aria-controls="temario"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
|
Temario
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="registro-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tab"
|
||||||
|
href="#registro"
|
||||||
|
class="nav-link"
|
||||||
|
aria-controls="registro"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
|
Registro
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="avisos-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tab"
|
||||||
|
href="#avisos"
|
||||||
|
class="nav-link"
|
||||||
|
aria-controls="avisos"
|
||||||
|
aria-selected="false"
|
||||||
|
>
|
||||||
|
Avisos e informes
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="container-fluid ">
|
||||||
|
<!-- Inicio de los tabs del nav -->
|
||||||
|
<div class="tab-content" id="myTabContent">
|
||||||
|
<!-- Incio del primer Tab -->
|
||||||
|
<div class="tab-pane fade show active" id="convocatoria" role="tabpanel" aria-labelledby="convocatoria-tab">
|
||||||
|
<div class="container-xxl">
|
||||||
|
<div class="row">
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-book"></i>
|
||||||
|
<strong>Cursos</strong>
|
||||||
|
</h3>
|
||||||
|
<!-- Incio del Tab -->
|
||||||
|
<div class="div-flex">
|
||||||
|
<!-- Nav de cursos -->
|
||||||
|
<div class="col-12 col-md-4 boxx">
|
||||||
|
<ul class="nav d-lg-block flex-nowrap">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="regulares-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tablist"
|
||||||
|
href="#regulares"
|
||||||
|
class="nav-link active line rounded"
|
||||||
|
aria-controls="regulares"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
|
Cursos Regulares</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="sabatinos-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tablist"
|
||||||
|
href="#sabatinos"
|
||||||
|
class="nav-link rounded"
|
||||||
|
aria-controls="sabatinos"
|
||||||
|
aria-selected="false"
|
||||||
|
>Cursos Sabatinos</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- Contenido de tab de cursos -->
|
||||||
|
<div class="col-12 col-md-8 tab-content" id="cursosTab">
|
||||||
|
<div
|
||||||
|
class="tab-pane fade show active contenido-centrado"
|
||||||
|
id="regulares"
|
||||||
|
role="tablist"
|
||||||
|
aria-labelledby="regulares-tab"
|
||||||
|
>
|
||||||
|
<div class="pt-2">
|
||||||
|
<p
|
||||||
|
class="mb-0 justify-content-center"
|
||||||
|
style="color: #fff; background-color: #1e3c70"
|
||||||
|
>
|
||||||
|
LUNES A VIERNES: Del 30 de septiembre al 12 de octubre
|
||||||
|
2024 <br />
|
||||||
|
2 hrs diarias
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<table class="table justify-content-center">
|
||||||
|
<thead style="background-color: #1e3c70">
|
||||||
|
<th scope="col">CURSO Y HORARIO</th>
|
||||||
|
<th scope="col">APORTACIÓN</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Intro. a la computación para 3era edad <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
09 a 11 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Word básico <br />20 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel básico <br />25 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial) <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel avanzado <br />25 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial) <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Power Query y Power Pivot en Excel <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs. (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server básico <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
10 a 12 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Python básico – intermedio <br />20 hrs. <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Ciberdelitos ¡Para todos! <br />10 hrs. <br />
|
||||||
|
17 a 19 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la programación <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00<br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Análisis de datos con Python <br />20 hrs. <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Manejo de R en Python <br />20 hrs. <br />19 a 21 hrs
|
||||||
|
(en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Niñas, niños y adolescentes en Ciberriesgo<br />
|
||||||
|
10 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs (10 hrs en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="tab-pane fade contenido-centrado"
|
||||||
|
id="sabatinos"
|
||||||
|
role="tablist"
|
||||||
|
aria-labelledby="sabatinos-tab"
|
||||||
|
>
|
||||||
|
<div class="pt-2">
|
||||||
|
<p
|
||||||
|
class="mb-0 justify-content-center"
|
||||||
|
style="color: #fff; background-color: #1e3c70"
|
||||||
|
>
|
||||||
|
SABATINOS: Del 19 de octubre al 16 de noviembre 2024
|
||||||
|
<br />
|
||||||
|
5 hrs por sesión
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<table class="table">
|
||||||
|
<thead style="background-color: #1e3c70">
|
||||||
|
<th scope="col">CURSO Y HORARIO</th>
|
||||||
|
<th scope="col">APORTACIÓN</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
AutoCAD <br />
|
||||||
|
20 hrs. <br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />
|
||||||
|
EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel básico<br />
|
||||||
|
25 hrs. <br />09 a 14 hrs (Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00<br />
|
||||||
|
EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel avanzado <br />25 hrs. <br />09 a 14 hrs
|
||||||
|
(Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Power Query y Power Pivot en Excel <br />20 hrs.
|
||||||
|
<br />09 a 14 hrs (Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server básico<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server avanzado <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Programación de Macros con Excel <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Seguridad de la información <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la Ciberseguridad <br />10 hrs.
|
||||||
|
<br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Ataques y defensas en Aplicaciones Web <br />20 hrs.
|
||||||
|
<br />09 a 14 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la programación <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00<br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Python básico – intermedio <br />20 hrs. <br />09 a 14
|
||||||
|
hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Análisis de datos con Python<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Programación interactiva para videojuegos con JOGL<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Inicio del Tab de temario -->
|
||||||
|
<div
|
||||||
|
class="tab-pane fade"
|
||||||
|
id="temario"
|
||||||
|
role="tabpanel"
|
||||||
|
aria-labelledby="temario-tab"
|
||||||
|
>
|
||||||
|
<div class="row">
|
||||||
|
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-book"></i>
|
||||||
|
<strong>Temario</strong>
|
||||||
|
</h3>
|
||||||
|
<div class="accordion" id="accordionPanelsStayOpenExample">
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseOne"
|
||||||
|
aria-expanded="true"
|
||||||
|
aria-controls="panelsStayOpen-collapseOne"
|
||||||
|
>
|
||||||
|
Excel
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseOne"
|
||||||
|
class="accordion-collapse collapse show"
|
||||||
|
>
|
||||||
|
<div class="accordion-body line-accor">
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Excel
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-body">
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Excel-2
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button collapsed"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseTwo"
|
||||||
|
aria-expanded="false"
|
||||||
|
aria-controls="panelsStayOpen-collapseTwo"
|
||||||
|
>
|
||||||
|
Bases de Datos (SQL)
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseTwo"
|
||||||
|
class="accordion-collapse collapse"
|
||||||
|
>
|
||||||
|
<div class="accordion-body">
|
||||||
|
<p>
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Base de datos
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button collapsed"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseThree"
|
||||||
|
aria-expanded="false"
|
||||||
|
aria-controls="panelsStayOpen-collapseThree"
|
||||||
|
>
|
||||||
|
Programación
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseThree"
|
||||||
|
class="accordion-collapse collapse"
|
||||||
|
>
|
||||||
|
<div class="accordion-body">Temario</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Inicio del Tab de registro -->
|
||||||
|
<div
|
||||||
|
class="tab-pane fade"
|
||||||
|
id="registro"
|
||||||
|
role="tabpanel"
|
||||||
|
aria-labelledby="registro-tab"
|
||||||
|
>
|
||||||
|
<div class="row">
|
||||||
|
<!-- Inicio del Tab de registro -->
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-notepad"></i>
|
||||||
|
<strong>Registro</strong>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Inicio del Tab de avisos e informes -->
|
||||||
|
<div
|
||||||
|
class="tab-pane fade"
|
||||||
|
id="avisos"
|
||||||
|
role="tabpanel"
|
||||||
|
aria-labelledby="avisos-tab"
|
||||||
|
>
|
||||||
|
<div class="row">
|
||||||
|
<!-- Inicio del Tab de avisos e informes -->
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-phone"></i>
|
||||||
|
<strong>Informes</strong>
|
||||||
|
</h3>
|
||||||
|
<div class="justify-content-center contenido-centrado-negro">
|
||||||
|
<p>
|
||||||
|
<strong>Importante</strong>
|
||||||
|
</p>
|
||||||
|
<p>Para aplicar la aportación UNAM o EXALUMNO UNAM</p>
|
||||||
|
<p>Únicamente se recibirán los siguientes documentos:</p>
|
||||||
|
|
||||||
|
<p><strong>INAPAM:</strong> Credencial INAPAM</p>
|
||||||
|
<p>
|
||||||
|
<strong>UNAM:</strong> Tira de materias del semestre vigente y
|
||||||
|
credencial UNAM o INE
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>EXALUMNO-UNAM:</strong> Credencial EXALUMNO UNAM, para
|
||||||
|
tramitarla consulte: https://www.pveu.unam.mx/credencial.php
|
||||||
|
</p>
|
||||||
|
<p><strong>tel.:</strong> 55-5622-6186 o 55-5622-6057</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><strong>FES Acatlán</strong></p>
|
||||||
|
<a href="#">Centro de Desarrollo Tecnológico </a>
|
||||||
|
<p>
|
||||||
|
Av. Alcanfores y San Juan Totoltepec s/n Naucalpan, Edo. de
|
||||||
|
México <br />
|
||||||
|
<strong>e-mail:</strong> cursos@acatlan.unam.mx <br />
|
||||||
|
<strong>Tels:</strong> 5623 1761 y 5623 1509
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
<!-- End #main -->
|
||||||
|
|
||||||
|
<!-- ======= Footer ======= -->
|
||||||
|
<footer id="footer">
|
||||||
|
<div class="footer-top">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-6 footer-newsletter">
|
||||||
|
<h4>Redes Sociales</h4>
|
||||||
|
Siguenos en:
|
||||||
|
<div class="social-links mt-3">
|
||||||
|
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
|
||||||
|
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
|
||||||
|
<a href="#" class="instagram"
|
||||||
|
><i class="bx bxl-instagram"></i
|
||||||
|
></a>
|
||||||
|
<a href="#" class="google-plus"
|
||||||
|
><i class="bx bxl-youtube"></i
|
||||||
|
></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<img
|
||||||
|
src="../assets/img/escudos/unam-nacion-blanco.png"
|
||||||
|
style="width: 150px; margin: 15px auto"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-2 col-md-6 footer-links">
|
||||||
|
<h4>Sitios de Interes</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-1</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-2</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-3</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-4</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-5</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-6</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-2 col-md-6 footer-links">
|
||||||
|
<h4>Conoce más</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-1</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-2</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-3</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-4</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<div class="footer-info">
|
||||||
|
<h3>FES <span>Acatlán</span></h3>
|
||||||
|
<p>
|
||||||
|
Hecho en México, todos los derechos reservados 2021.
|
||||||
|
<br /><br />
|
||||||
|
Esta página puede ser reproducida con fines no lucrativos,
|
||||||
|
siempre y cuando no se mutile, se cite la fuente completa y su
|
||||||
|
dirección electrónica. De otra forma, requiere permiso previo
|
||||||
|
por escrito de la institución.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
<!-- End Footer -->
|
||||||
|
|
||||||
|
<a href="#" class="back-to-top"><i class="icofont-swoosh-up"></i></a>
|
||||||
|
|
||||||
|
<!-- Ext JS -->
|
||||||
|
<script src="../assets/Ext/jquery/jquery.min.js"></script>
|
||||||
|
<script src="../assets/Ext/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="../assets/Ext/jquery.easing/jquery.easing.min.js"></script>
|
||||||
|
<script src="../assets/Ext/owl.carousel/owl.carousel.min.js"></script>
|
||||||
|
<script src="../assets/Ext/aos/aos.js"></script>
|
||||||
|
|
||||||
|
<!-- Main JS -->
|
||||||
|
<script src="../assets/js/main.js"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -0,0 +1,787 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="es">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
||||||
|
|
||||||
|
<title>FES Acatlán</title>
|
||||||
|
<meta content="" name="descriptison" />
|
||||||
|
<meta content="" name="keywords" />
|
||||||
|
|
||||||
|
<!-- Favicons -->
|
||||||
|
<link href="../assets/img/icon/icon.png" rel="icon" />
|
||||||
|
<link href="../assets/img/icon/icon.png" rel="apple-touch-icon" />
|
||||||
|
|
||||||
|
<!-- Ext CSS -->
|
||||||
|
<link
|
||||||
|
href="../assets/Ext/bootstrap/css/bootstrap.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link href="../assets/Ext/icofont/icofont.min.css" rel="stylesheet" />
|
||||||
|
<link href="../assets/Ext/boxicons/css/boxicons.min.css" rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
href="../assets/Ext/owl.carousel/assets/owl.carousel.min.css"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<link href="../assets/Ext/aos/aos.css" rel="stylesheet" />
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- Main CSS -->
|
||||||
|
<link href="../assets/css/main.css" rel="stylesheet" />
|
||||||
|
<link rel="stylesheet" href="computo.css">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- ======= Header ======= -->
|
||||||
|
<!--<header id="header" class="fixed-top ">-->
|
||||||
|
<header id="header">
|
||||||
|
<div class="container d-flex align-items-center justify-content-between">
|
||||||
|
<div class="">
|
||||||
|
<a href="https://www.unam.mx/" target="_blank"
|
||||||
|
><img
|
||||||
|
src="../assets/img/escudos/logo_unam-b.png"
|
||||||
|
alt=""
|
||||||
|
class="img-fluid logo"
|
||||||
|
/></a>
|
||||||
|
<a href="https://www.acatlan.unam.mx/" target="_blank" class="mr-auto"
|
||||||
|
><img
|
||||||
|
src="../assets/img/escudos/escudo-b2.png"
|
||||||
|
alt=""
|
||||||
|
class="img-fluid logo-unam"
|
||||||
|
/></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h1>FES <span>Acatlán</span></h1>
|
||||||
|
|
||||||
|
<nav class="nav-menu d-none d-lg-block">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">Normatividad</a></li>
|
||||||
|
<li><a href="#">Tienda Acatlán</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<!-- .nav-menu -->
|
||||||
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<nav class="nav-menu-2 d-none d-lg-block">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#">Inicio</a></li>
|
||||||
|
<li><a href="#">Licenciaturas</a></li>
|
||||||
|
<li><a href="#">Posgrados</a></li>
|
||||||
|
<li><a href="#">Investigación</a></li>
|
||||||
|
<li><a href="#">Cursos y Diplomados</a></li>
|
||||||
|
<li><a href="#">Otros</a></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<!-- .nav-menu -->
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<!-- End Header -->
|
||||||
|
|
||||||
|
<!-- ======= Hero Section ======= -->
|
||||||
|
<section id="computo" class="d-flex align-items-center justify-content-center">
|
||||||
|
<div class="container" data-aos="fade-up">
|
||||||
|
<div
|
||||||
|
class="row justify-content-center align-items-center"
|
||||||
|
data-aos="fade-up"
|
||||||
|
data-aos-delay="150"
|
||||||
|
>
|
||||||
|
<div class="col-sm-12 col-md-6 transparent-cart">
|
||||||
|
<h1 style="font-size: 4vh; color: #ffc115;"><i class="bx bx-laptop"></i>
|
||||||
|
Cursos de Computo
|
||||||
|
</h1>
|
||||||
|
</div>
|
||||||
|
<div class="col-12 col-md-6">
|
||||||
|
<div
|
||||||
|
id="carouselExampleControls"
|
||||||
|
class="carousel slide"
|
||||||
|
data-bs-ride="carousel"
|
||||||
|
style="font-size: medium"
|
||||||
|
>
|
||||||
|
<div class="carousel-inner">
|
||||||
|
<div class="carousel-item active transparent-cart2">
|
||||||
|
<h3 style="color: #ffc115;">¿Quiénes somos?</h3>
|
||||||
|
<p>
|
||||||
|
El Área de Cursos del Centro de Desarrollo Tecnológico, se
|
||||||
|
distingue por ser una de las más importantes y
|
||||||
|
representativas en la Zona Norte del Área Metropolitana,
|
||||||
|
como proveedora de conocimiento tecnológico y actualizado
|
||||||
|
en: software, capacitación y certificaciones. La producción
|
||||||
|
de los materiales, así como de los conocimientos que se
|
||||||
|
manejan por parte del personal que labora en esta área es de
|
||||||
|
consideración primordial para ofrecer un servicio de calidad
|
||||||
|
y alto índice de satisfacción de acuerdo a las expectativas
|
||||||
|
de los participantes, en cada una de sus actividades. Es de
|
||||||
|
mencionar que el área tiene más de 15 años ofreciendo con
|
||||||
|
renovado y constante servicio de capacitación, obteniendo
|
||||||
|
logros alcanzados que pueden observarse en las diferentes
|
||||||
|
certificaciones en las que ha participado como digno ejemplo
|
||||||
|
de tecnología para apoyo a las diversas carreras de la
|
||||||
|
Facultad, acuerdos de certificación en empresas que apoyan a
|
||||||
|
los alumnos a lograr un mejor nivel laboral dadas las
|
||||||
|
características del campo de aplicación de su licenciatura.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item transparent-cart2">
|
||||||
|
<h4>Misión</h4>
|
||||||
|
<p>
|
||||||
|
Preparar a los usuarios en el uso correcto de las
|
||||||
|
Tecnologías de la Información y Comunicación para que a
|
||||||
|
través de ellas logren superarse y distinguirse de entre los
|
||||||
|
demás al conjuntarlas con el conocimiento de su propia área
|
||||||
|
de experiencia.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="carousel-item transparent-cart2">
|
||||||
|
<h4>Visión</h4>
|
||||||
|
<p>
|
||||||
|
Lograr una alfabetización digital que reduzca la brecha
|
||||||
|
generacional entre los novicios y los expertos en el uso de
|
||||||
|
las Tecnologías de la Información y Comunicación.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
class="carousel-control-prev"
|
||||||
|
type="button"
|
||||||
|
data-bs-target="#carouselExampleControls"
|
||||||
|
data-bs-slide="prev"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="carousel-control-prev-icon"
|
||||||
|
aria-hidden="true"
|
||||||
|
></span>
|
||||||
|
<span class="visually-hidden">Previous</span>
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
class="carousel-control-next"
|
||||||
|
type="button"
|
||||||
|
data-bs-target="#carouselExampleControls"
|
||||||
|
data-bs-slide="next"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="carousel-control-next-icon"
|
||||||
|
aria-hidden="true"
|
||||||
|
></span>
|
||||||
|
<span class="visually-hidden">Next</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- End Hero -->
|
||||||
|
|
||||||
|
<main id="main">
|
||||||
|
<section
|
||||||
|
id="Center"
|
||||||
|
class="d-flex align-items-center justify-content-center flex-column pt-0"
|
||||||
|
>
|
||||||
|
<div class="container-xxl">
|
||||||
|
<div class="row">
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-book"></i>
|
||||||
|
<strong>Cursos</strong>
|
||||||
|
</h3>
|
||||||
|
<!-- Incio del Tab -->
|
||||||
|
<div class="div-flex">
|
||||||
|
<!-- Nav de cursos -->
|
||||||
|
<div class="col-12 col-md-4 boxx">
|
||||||
|
<ul class="nav d-lg-block flex-nowrap">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="regulares-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tablist"
|
||||||
|
href="#regulares"
|
||||||
|
class="nav-link active line rounded"
|
||||||
|
aria-controls="regulares"
|
||||||
|
aria-selected="true"
|
||||||
|
>
|
||||||
|
Cursos Regulares</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a
|
||||||
|
id="sabatinos-tab"
|
||||||
|
data-toggle="tab"
|
||||||
|
role="tablist"
|
||||||
|
href="#sabatinos"
|
||||||
|
class="nav-link rounded"
|
||||||
|
aria-controls="sabatinos"
|
||||||
|
aria-selected="false"
|
||||||
|
>Cursos Sabatinos</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<!-- Contenido de tab de cursos -->
|
||||||
|
<div class="col-12 col-md-8 tab-content" id="cursosTab">
|
||||||
|
<div
|
||||||
|
class="tab-pane fade show active contenido-centrado"
|
||||||
|
id="regulares"
|
||||||
|
role="tablist"
|
||||||
|
aria-labelledby="regulares-tab"
|
||||||
|
>
|
||||||
|
<div class="pt-2">
|
||||||
|
<p
|
||||||
|
class="mb-0 justify-content-center"
|
||||||
|
style="color: #fff; background-color: #1e3c70"
|
||||||
|
>
|
||||||
|
LUNES A VIERNES: Del 30 de septiembre al 12 de octubre
|
||||||
|
2024 <br />
|
||||||
|
2 hrs diarias
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<table class="table justify-content-center">
|
||||||
|
<thead style="background-color: #1e3c70">
|
||||||
|
<th scope="col">CURSO Y HORARIO</th>
|
||||||
|
<th scope="col">APORTACIÓN</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Intro. a la computación para 3era edad <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
09 a 11 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Word básico <br />20 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel básico <br />25 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial) <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel avanzado <br />25 hrs. <br />
|
||||||
|
09 a 11 hrs (Presencial) <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Power Query y Power Pivot en Excel <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs. (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server básico <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
10 a 12 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Python básico – intermedio <br />20 hrs. <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Ciberdelitos ¡Para todos! <br />10 hrs. <br />
|
||||||
|
17 a 19 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la programación <br />20 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00<br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Análisis de datos con Python <br />20 hrs. <br />
|
||||||
|
19 a 21 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Manejo de R en Python <br />20 hrs. <br />19 a 21 hrs
|
||||||
|
(en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Niñas, niños y adolescentes en Ciberriesgo<br />
|
||||||
|
10 hrs.
|
||||||
|
<br />
|
||||||
|
19 a 21 hrs (10 hrs en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="tab-pane fade contenido-centrado"
|
||||||
|
id="sabatinos"
|
||||||
|
role="tablist"
|
||||||
|
aria-labelledby="sabatinos-tab"
|
||||||
|
>
|
||||||
|
<div class="pt-2">
|
||||||
|
<p
|
||||||
|
class="mb-0 justify-content-center"
|
||||||
|
style="color: #fff; background-color: #1e3c70"
|
||||||
|
>
|
||||||
|
SABATINOS: Del 19 de octubre al 16 de noviembre 2024
|
||||||
|
<br />
|
||||||
|
5 hrs por sesión
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<table class="table">
|
||||||
|
<thead style="background-color: #1e3c70">
|
||||||
|
<th scope="col">CURSO Y HORARIO</th>
|
||||||
|
<th scope="col">APORTACIÓN</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
AutoCAD <br />
|
||||||
|
20 hrs. <br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />
|
||||||
|
EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel básico<br />
|
||||||
|
25 hrs. <br />09 a 14 hrs (Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00<br />
|
||||||
|
EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Excel avanzado <br />25 hrs. <br />09 a 14 hrs
|
||||||
|
(Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 2,150.00 <br />EXUNAM: $ 2,870.00
|
||||||
|
<br />EXTERNO: $ 3,587.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Power Query y Power Pivot en Excel <br />20 hrs.
|
||||||
|
<br />09 a 14 hrs (Presencial o en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server básico<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Base de datos con SQL server avanzado <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Programación de Macros con Excel <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Seguridad de la información <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la Ciberseguridad <br />10 hrs.
|
||||||
|
<br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 860.00 <br />EXUNAM: $ 1,147.50 <br />EXTERNO:
|
||||||
|
$ 1,435.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Ataques y defensas en Aplicaciones Web <br />20 hrs.
|
||||||
|
<br />09 a 14 hrs (Presencial)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Introducción a la programación <br />20 hrs.<br />
|
||||||
|
09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00<br />
|
||||||
|
EXUNAM: $ 2,295.00 <br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Python básico – intermedio <br />20 hrs. <br />09 a 14
|
||||||
|
hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Análisis de datos con Python<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Programación interactiva para videojuegos con JOGL<br />
|
||||||
|
20 hrs. <br />09 a 14 hrs (en línea)
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
UNAM: $ 1,720.00 <br />EXUNAM: $ 2,295.00
|
||||||
|
<br />EXTERNO: $ 2,870.00
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<!-- Inicio del Tab de temario -->
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-book"></i>
|
||||||
|
<strong>Temario</strong>
|
||||||
|
</h3>
|
||||||
|
<div class="accordion" id="accordionPanelsStayOpenExample">
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseOne"
|
||||||
|
aria-expanded="true"
|
||||||
|
aria-controls="panelsStayOpen-collapseOne"
|
||||||
|
>
|
||||||
|
Excel
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseOne"
|
||||||
|
class="accordion-collapse collapse show"
|
||||||
|
>
|
||||||
|
<div class="accordion-body line-accor">
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Excel
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-body">
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Excel-2
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button collapsed"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseTwo"
|
||||||
|
aria-expanded="false"
|
||||||
|
aria-controls="panelsStayOpen-collapseTwo"
|
||||||
|
>
|
||||||
|
Bases de Datos (SQL)
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseTwo"
|
||||||
|
class="accordion-collapse collapse"
|
||||||
|
>
|
||||||
|
<div class="accordion-body">
|
||||||
|
<p>
|
||||||
|
<a
|
||||||
|
href="files/temarios-cursos-computo/Base-de-datos-SQL-Avanzado-20-hrs.pdf"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<i class="bx bx-file"></i>
|
||||||
|
Base de datos
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="accordion-item">
|
||||||
|
<h2 class="accordion-header">
|
||||||
|
<button
|
||||||
|
class="accordion-button collapsed"
|
||||||
|
type="button"
|
||||||
|
data-bs-toggle="collapse"
|
||||||
|
data-bs-target="#panelsStayOpen-collapseThree"
|
||||||
|
aria-expanded="false"
|
||||||
|
aria-controls="panelsStayOpen-collapseThree"
|
||||||
|
>
|
||||||
|
Programación
|
||||||
|
</button>
|
||||||
|
</h2>
|
||||||
|
<div
|
||||||
|
id="panelsStayOpen-collapseThree"
|
||||||
|
class="accordion-collapse collapse"
|
||||||
|
>
|
||||||
|
<div class="accordion-body">Temario</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<!-- Inicio del Tab de registro -->
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-notepad"></i>
|
||||||
|
<strong>Registro</strong>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<!-- Inicio del Tab de avisos e informes -->
|
||||||
|
<h3 class="color">
|
||||||
|
<i class="bx bx-phone"></i>
|
||||||
|
<strong>Informes</strong>
|
||||||
|
</h3>
|
||||||
|
<div class="justify-content-center contenido-centrado-negro">
|
||||||
|
<p>
|
||||||
|
<strong>Importante</strong>
|
||||||
|
</p>
|
||||||
|
<p>Para aplicar la aportación UNAM o EXALUMNO UNAM</p>
|
||||||
|
<p>Únicamente se recibirán los siguientes documentos:</p>
|
||||||
|
|
||||||
|
<p><strong>INAPAM:</strong> Credencial INAPAM</p>
|
||||||
|
<p>
|
||||||
|
<strong>UNAM:</strong> Tira de materias del semestre vigente y
|
||||||
|
credencial UNAM o INE
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<strong>EXALUMNO-UNAM:</strong> Credencial EXALUMNO UNAM, para
|
||||||
|
tramitarla consulte: https://www.pveu.unam.mx/credencial.php
|
||||||
|
</p>
|
||||||
|
<p><strong>tel.:</strong> 55-5622-6186 o 55-5622-6057</p>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p><strong>FES Acatlán</strong></p>
|
||||||
|
<a href="#">Centro de Desarrollo Tecnológico </a>
|
||||||
|
<p>
|
||||||
|
Av. Alcanfores y San Juan Totoltepec s/n Naucalpan, Edo. de
|
||||||
|
México <br />
|
||||||
|
<strong>e-mail:</strong> cursos@acatlan.unam.mx <br />
|
||||||
|
<strong>Tels:</strong> 5623 1761 y 5623 1509
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
<!-- End #main -->
|
||||||
|
|
||||||
|
<!-- ======= Footer ======= -->
|
||||||
|
<footer id="footer">
|
||||||
|
<div class="footer-top">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-4 col-md-6 footer-newsletter">
|
||||||
|
<h4>Redes Sociales</h4>
|
||||||
|
Siguenos en:
|
||||||
|
<div class="social-links mt-3">
|
||||||
|
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
|
||||||
|
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
|
||||||
|
<a href="#" class="instagram"
|
||||||
|
><i class="bx bxl-instagram"></i
|
||||||
|
></a>
|
||||||
|
<a href="#" class="google-plus"
|
||||||
|
><i class="bx bxl-youtube"></i
|
||||||
|
></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<img
|
||||||
|
src="../assets/img/escudos/unam-nacion-blanco.png"
|
||||||
|
style="width: 150px; margin: 15px auto"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-2 col-md-6 footer-links">
|
||||||
|
<h4>Sitios de Interes</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-1</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-2</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-3</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-4</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-5</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-6</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-2 col-md-6 footer-links">
|
||||||
|
<h4>Conoce más</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-1</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-2</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-3</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<i class="bx bx-chevron-right"></i> <a href="#">Link-4</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<div class="footer-info">
|
||||||
|
<h3>FES <span>Acatlán</span></h3>
|
||||||
|
<p>
|
||||||
|
Hecho en México, todos los derechos reservados 2021.
|
||||||
|
<br /><br />
|
||||||
|
Esta página puede ser reproducida con fines no lucrativos,
|
||||||
|
siempre y cuando no se mutile, se cite la fuente completa y su
|
||||||
|
dirección electrónica. De otra forma, requiere permiso previo
|
||||||
|
por escrito de la institución.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
<!-- End Footer -->
|
||||||
|
|
||||||
|
<a href="#" class="back-to-top"><i class="icofont-swoosh-up"></i></a>
|
||||||
|
|
||||||
|
<!-- Ext JS -->
|
||||||
|
<script src="../assets/Ext/jquery/jquery.min.js"></script>
|
||||||
|
<script src="../assets/Ext/bootstrap/js/bootstrap.bundle.min.js"></script>
|
||||||
|
<script src="../assets/Ext/jquery.easing/jquery.easing.min.js"></script>
|
||||||
|
<script src="../assets/Ext/owl.carousel/owl.carousel.min.js"></script>
|
||||||
|
<script src="../assets/Ext/aos/aos.js"></script>
|
||||||
|
|
||||||
|
<!-- Main JS -->
|
||||||
|
<script src="../assets/js/main.js"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
+3
-3
@@ -566,7 +566,7 @@ Hero
|
|||||||
}
|
}
|
||||||
#hero:before {
|
#hero:before {
|
||||||
content: "";
|
content: "";
|
||||||
background: rgba(255, 255, 255, 0.3);
|
background: rgba(0, 0, 0, 0.527);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -589,13 +589,13 @@ Hero
|
|||||||
}
|
}
|
||||||
#hero h2 {
|
#hero h2 {
|
||||||
color: rgba(255, 255, 255, 0.9);
|
color: rgba(255, 255, 255, 0.9);
|
||||||
background-color: rgba(30, 60, 112, 0.8);
|
/*background-color: rgba(30, 60, 112, 0.8);*/
|
||||||
margin: 10px 0 0 0;
|
margin: 10px 0 0 0;
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
#hero .icon-box {
|
#hero .icon-box {
|
||||||
padding: ;
|
padding: 1;
|
||||||
transition: ease-in-out 0.3s;
|
transition: ease-in-out 0.3s;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.3);
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|||||||
@@ -0,0 +1,262 @@
|
|||||||
|
#idioma {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../../assets/img/bg/alt-2.jpg") top center;
|
||||||
|
background-size: cover;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma:before {
|
||||||
|
content: "";
|
||||||
|
background: rgba(95, 95, 95, 0.3);
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .container {
|
||||||
|
position: relative;
|
||||||
|
padding-top: 10%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma h1 {
|
||||||
|
font-size: 36px;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 40px;
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma h1 span {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma h2 {
|
||||||
|
color: rgba(255, 255, 255, 0.9);
|
||||||
|
/* background-color: rgba(30, 60, 112, 0.8); */
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
font-size: 22px;
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma h2 span {
|
||||||
|
color: #ffc451;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box {
|
||||||
|
/*padding: ;*/
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||||||
|
text-align: center;
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box i {
|
||||||
|
font-size: 32px;
|
||||||
|
line-height: 1;
|
||||||
|
color: #ffc451;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box h3 {
|
||||||
|
font-weight: 700;
|
||||||
|
margin-top: auto;
|
||||||
|
padding: 0;
|
||||||
|
line-height: 1;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 26px;
|
||||||
|
background-color: rgba(187, 136, 0, 0.8);
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box h3 a {
|
||||||
|
color: #fff;
|
||||||
|
transition: ease-in-out 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box h3 a:hover {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .icon-box:hover {
|
||||||
|
border-color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1024px) {
|
||||||
|
#idiomas {
|
||||||
|
background-attachment: fixed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
#idiomas {
|
||||||
|
height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idiomas h1 {
|
||||||
|
font-size: 28px;
|
||||||
|
line-height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idiomas h2 {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idiomas .navbar-toggler {
|
||||||
|
font-size: 13px;
|
||||||
|
padding: 0px;
|
||||||
|
border: none;
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .text-container {
|
||||||
|
padding: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .transparent-cart {
|
||||||
|
padding: 1.7rem;
|
||||||
|
background: rgba(255, 255, 255, 0.08);
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 100%;
|
||||||
|
backdrop-filter: blur(3px);
|
||||||
|
-webkit-backdrop-filter: blur(3px);
|
||||||
|
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .transparent-cart::before{
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
left: 10px;
|
||||||
|
border-left: 2px solid #1e3c70;
|
||||||
|
border-top: 2px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#idioma .transparent-cart::after{
|
||||||
|
content: "";
|
||||||
|
width: 60px;
|
||||||
|
height: 60px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 10px;
|
||||||
|
right: 10px;
|
||||||
|
border-right: 2px solid #1e3c70;
|
||||||
|
border-bottom: 2px solid #1e3c70;
|
||||||
|
border-radius: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .cta-btn {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 12px;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
padding: 4px 18px;
|
||||||
|
display: inline-flex;
|
||||||
|
border-radius: 18px;
|
||||||
|
transition: 0.2s;
|
||||||
|
margin-top: 10px;
|
||||||
|
border: 2px solid #bb8800;
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Centro ul li a {
|
||||||
|
color: #bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#idioma .cta-btn:hover {
|
||||||
|
background: #1e3c70;
|
||||||
|
border-color: #1e3c70;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
#myTab .active {
|
||||||
|
color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto .table th {
|
||||||
|
text-align: center;
|
||||||
|
background-color: #1e3c70;
|
||||||
|
color: rgb(255, 255, 255);
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto .table tr td {
|
||||||
|
color: #1e3c70;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto .container {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-left: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto .contenedor {
|
||||||
|
padding: 10px;
|
||||||
|
overflow-x: scroll !important;
|
||||||
|
height: fit-content;
|
||||||
|
flex-wrap: nowrap !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto ul li {
|
||||||
|
width: fit-content;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Contacto ul li a {
|
||||||
|
text-decoration: none;
|
||||||
|
padding: 5px;
|
||||||
|
/* border: 1px solid #000; */
|
||||||
|
width: fit-content;
|
||||||
|
padding: 10px !important;
|
||||||
|
color:#bb8800;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tab-Contacto .active {
|
||||||
|
color:#1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 991px) {
|
||||||
|
#Contacto div .contendor {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.line {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line ::before {
|
||||||
|
content: "";
|
||||||
|
background-color: #bb8800;
|
||||||
|
display: inline-block;
|
||||||
|
width: 3px;
|
||||||
|
height: 100%;
|
||||||
|
left: -1rem;
|
||||||
|
position: absolute;
|
||||||
|
padding-top: 1rem;
|
||||||
|
z-index: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.line ::after {
|
||||||
|
content: "";
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 50%;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -19px;
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
z-index: 999;
|
||||||
|
border: 1px solid #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pr {
|
||||||
|
padding-right: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
+470
-64
@@ -20,15 +20,12 @@
|
|||||||
<link href="../assets/Ext/boxicons/css/boxicons.min.css" rel="stylesheet">
|
<link href="../assets/Ext/boxicons/css/boxicons.min.css" rel="stylesheet">
|
||||||
<link href="../assets/Ext/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
|
<link href="../assets/Ext/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
|
||||||
<link href="../assets/Ext/aos/aos.css" rel="stylesheet">
|
<link href="../assets/Ext/aos/aos.css" rel="stylesheet">
|
||||||
<link
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
|
||||||
rel="stylesheet"
|
|
||||||
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- Main CSS -->
|
<!-- Main CSS -->
|
||||||
<link href="../assets/css/main.css" rel="stylesheet">
|
<link href="../assets/css/main.css" rel="stylesheet">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="assets/css/idiomas.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@@ -37,14 +34,16 @@
|
|||||||
<!--<header id="header" class="fixed-top ">-->
|
<!--<header id="header" class="fixed-top ">-->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
<div class="container d-flex align-items-center justify-content-between">
|
<div class="container d-flex align-items-center justify-content-between">
|
||||||
<div class="">
|
<div class="">
|
||||||
<a href="https://www.unam.mx/" target="_blank"><img src="../assets/img/escudos/logo_unam-b.png" alt="" class="img-fluid logo"></a>
|
<a href="https://www.unam.mx/" target="_blank"><img src="../assets/img/escudos/logo_unam-b.png" alt=""
|
||||||
<a href="https://www.acatlan.unam.mx/" target="_blank" class="mr-auto"><img src="../assets/img/escudos/escudo-b2.png" alt="" class="img-fluid logo-unam"></a>
|
class="img-fluid logo"></a>
|
||||||
</div>
|
<a href="https://www.acatlan.unam.mx/" target="_blank" class="mr-auto"><img
|
||||||
|
src="../assets/img/escudos/escudo-b2.png" alt="" class="img-fluid logo-unam"></a>
|
||||||
<h1>FES <span>Acatlán</span></h1>
|
</div>
|
||||||
|
|
||||||
|
<h1>FES <span>Acatlán</span></h1>
|
||||||
|
|
||||||
|
|
||||||
<nav class="nav-menu d-none d-lg-block">
|
<nav class="nav-menu d-none d-lg-block">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#">Normatividad</a></li>
|
<li><a href="#">Normatividad</a></li>
|
||||||
@@ -53,55 +52,431 @@
|
|||||||
</nav><!-- .nav-menu -->
|
</nav><!-- .nav-menu -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="container ">
|
<div class="container ">
|
||||||
<nav class="nav-menu-2 d-none d-lg-block">
|
<nav class="nav-menu-2 d-none d-lg-block">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#">Inicio</a></li>
|
<li><a href="#">Inicio</a></li>
|
||||||
<li><a href="#">Licenciaturas</a></li>
|
<li><a href="#">Licenciaturas</a></li>
|
||||||
<li><a href="#">Posgrados</a></li>
|
<li><a href="#">Posgrados</a></li>
|
||||||
<li><a href="#">Investigación</a></li>
|
<li><a href="#">Investigación</a></li>
|
||||||
<li><a href="#">Cursos y Diplomados</a></li>
|
<li><a href="#">Cursos y Diplomados</a></li>
|
||||||
<li><a href="#">Otros</a></li>
|
<li><a href="#">Otros</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav><!-- .nav-menu -->
|
</nav><!-- .nav-menu -->
|
||||||
</div>
|
</div>
|
||||||
</header><!-- End Header -->
|
</header><!-- End Header -->
|
||||||
|
|
||||||
<!-- ======= Hero Section ======= -->
|
<!-- ======= Hero Section ======= -->
|
||||||
<section id="hero" class="d-flex align-items-center justify-content-center">
|
<section id="idioma" class="d-flex align-items-center justify-content-center">
|
||||||
<div class="container" data-aos="fade-up">
|
<div class="container" data-aos="fade-up">
|
||||||
|
|
||||||
<div class="row justify-content-center" data-aos="fade-up" data-aos-delay="150">
|
<div class="row justify-content-between" data-aos="fade-up" data-aos-delay="150">
|
||||||
<div class="col-12">
|
<div class="col-lg-6 col-sm-12">
|
||||||
|
<h1 class="" style="text-align: justify; color: white;">Idiomas Acatlán</h1>
|
||||||
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
|
<h2 style="text-align: justify;"><span>Cursos Regulares y Cursos Sabatinos</span></h2>
|
||||||
<div class="carousel-inner">
|
<h3 class="text-white d-flex aling-items-center gap_1 pt-3"
|
||||||
<div class="carousel-item active">
|
style="color: rgba(255, 255, 255); text-align: justify;">
|
||||||
<img src="https://www.acatlan.unam.mx/images/1981.jpg" class="d-block w-100" alt="...">
|
<i class="bx bx-book-reader bx-flip-horizontal bx-md"></i>
|
||||||
</div>
|
Objetivo
|
||||||
<div class="carousel-item">
|
</h3>
|
||||||
<img src="https://www.acatlan.unam.mx/images/1953.png" class="d-block w-100" alt="...">
|
<div class="line ms-3 ">
|
||||||
</div>
|
<p style="color: rgba(255, 255, 255); text-align: justify; font-size: medium;">
|
||||||
<div class="carousel-item">
|
El centro de enseñanzas de idiomas (CEI) de la FES Acatlán tiene como obejtivo contribuir a la
|
||||||
<img src="https://www.acatlan.unam.mx/images/1939.jpg" class="d-block w-100" alt="...">
|
formación integral de la comunidad interna y externa de la Facultad a través de la enseñanza de idiomas.
|
||||||
</div>
|
En esta labor, se incorporan actividades culturales en la lengua meta; en ella los alumnos practican
|
||||||
</div>
|
el idioma y conocen la cultura de estos pueblos mientras disfrutan de las expresiones artisticas como
|
||||||
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
|
danza,
|
||||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
música, literatura, teatro, cine y muestras gastronómicas.
|
||||||
<span class="visually-hidden">Previous</span>
|
</p>
|
||||||
</button>
|
</div>
|
||||||
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
|
</div>
|
||||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
<div class="col-lg-6 col-sm-12 justify-content-center">
|
||||||
<span class="visually-hidden">Next</span>
|
<div class="transparent-cart">
|
||||||
</button>
|
<h5 style="color: #1e3c70; text-align: left;">
|
||||||
</div>
|
<i class="bx bx-world"></i>
|
||||||
|
Convocatoria
|
||||||
|
</h5>
|
||||||
|
<div class="border-top">
|
||||||
|
<h6 style="color: rgb(255, 255, 255); text-align: justify;">
|
||||||
|
<i class="bx bxs-time-five" style="color: #ffc115;"></i>
|
||||||
|
INSCRIPCIONES Y REINSCRIPCIONES CURSOS SABATINOS
|
||||||
|
</h6>
|
||||||
|
<p class="m-0" style="color: #ffc115; text-align: justify;">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipinscing elit.
|
||||||
|
</p>
|
||||||
|
<p style="text-align: right;">
|
||||||
|
<a class="cta-btn" href="#">Ver más</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="border-top">
|
||||||
|
<h6 style="color: rgb(255, 255, 255); text-align: justify;">
|
||||||
|
<i class="bx bxs-time-five" style="color: #ffc115;"></i>
|
||||||
|
Ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis auteirure dolor in reprehenderit
|
||||||
|
in voluptate
|
||||||
|
</h6>
|
||||||
|
<p class="" style="color: #ffc115; font-size:medium; text-align: justify;">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipinscing elit.
|
||||||
|
</p>
|
||||||
|
<p style="text-align: right;">
|
||||||
|
<a class="cta-btn" href="#">Ver más</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
|
<!-- =========== Fin Idioma =========== -->
|
||||||
|
|
||||||
|
<!-- =========== Centro Section =========== -->
|
||||||
|
<section id="Centro" class="d-flex align-items-center justify-content-center">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-6 col-sm-12 line pr ">
|
||||||
|
<h5 style="color: #bb8800; font-weight: 700;">
|
||||||
|
<i class="bx bx-world" style="color: #111110;"></i>
|
||||||
|
Centro de Enseñanzas de Idiomas
|
||||||
|
</h5>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 600;">Correo de Contacto</h6>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 600;">Secretaria Auxiliar:</h6>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 600;">Registro CEI:</h6>
|
||||||
|
<p style="color: #1e3c70;">
|
||||||
|
El CEI lleva acabo estudios e investigaciones en la enseñanza de lenguas, para ello cuenta
|
||||||
|
con el Seminario de Lingüistica Teórica y Aplicada (SELITA) formado por los docentes de los diversos
|
||||||
|
departamentos. <br>
|
||||||
|
Además, para apoyar la movilidad estudiantil, el CEI es sede aplicadora de exámenes de
|
||||||
|
certificación internacional, entre ellos: el OSD de alemán, el CAPLE de portugués,
|
||||||
|
el DELF de francés , el CILS de italiano y el TOELF, el FCE, el CAE, el TOYEC y el IELTS en inglés.
|
||||||
|
</p>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 600;">Modalidades:</h6>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 500;">Comprensión de lectura (CL):</h6>
|
||||||
|
<p style="color: #1e3c70;">
|
||||||
|
Si necesitas cumplir con el requisito de idioma que pide tu carrera, esta opción es para ti.
|
||||||
|
Los cursos se enfocan al desarrollo de estrategias y comprensión de textos. consulta tus requisitos
|
||||||
|
de idioma en tu licencitura.
|
||||||
|
</p>
|
||||||
|
<h6 style="color: #1e3c70; font-weight: 500;">Plan Global (PG):</h6>
|
||||||
|
<p style="color: #1e3c70;">
|
||||||
|
Si te interesa aprender las cuatro habilidades básicas de un idioma: hablar, escribir, escuchar
|
||||||
|
y leer, esta modalidad es tu opción.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-lg-6 col-sm-12 ">
|
||||||
|
<p style="color: #1e3c70;">
|
||||||
|
El CEI ofrece cursos regulares (entre semana) y sabatinos, en ellos puedes estudiar las siguientes
|
||||||
|
lenguas:
|
||||||
|
</p>
|
||||||
|
<!-- nav de cursos -->
|
||||||
|
<ul class="nav tabs justify-content-center" id="myTab" role="tablist">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home"
|
||||||
|
aria-selected="true">
|
||||||
|
Cursos Regulares
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile"
|
||||||
|
aria-selected="false">
|
||||||
|
Sabatinos
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<!-- Fin del nav de cursos -->
|
||||||
|
|
||||||
|
<!-- Inicio de los tabs para cursos -->
|
||||||
|
<div class="tab-content mt-2" id="myTabContent">
|
||||||
|
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
|
||||||
|
<p style="color: black;">
|
||||||
|
<b>
|
||||||
|
alemán, árabe, chino, español para extranjeros, francés, griego clásico, Hñähñu (otomí),
|
||||||
|
inglés, italiano, japonés, latín, náhuatl, portugués, ruso.
|
||||||
|
</b>
|
||||||
|
</p>
|
||||||
|
<p style="color: rgb(43, 42, 42);">
|
||||||
|
Se abren dos convocatorias al año cercanas a las siguientes fechas:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li style="color: black;">
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>Cursos de febrero:</b> se publica a mediados del mes de enero.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li style="color: black;">
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>Cursos de agosto:</b> se publica a finales del mes de junio.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p style="color: rgb(43, 42, 42);">
|
||||||
|
Se imparten cursos de Plan Global, Comprensión Lectora y
|
||||||
|
algunos cursos de cultura y aspectos de la Lengua.
|
||||||
|
<br> <br>
|
||||||
|
Generalmente se imparten cuatro horas de clase a la semana, dividida en dos días;
|
||||||
|
o bien, el día viernes cuatro horas (PG) o seis horas (CL).
|
||||||
|
<br> <br>
|
||||||
|
<b>
|
||||||
|
Para mayor información, revisa la convocatoria en la sección Isncripción Cursos Regulares.
|
||||||
|
</b>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del primer tab para cursos -->
|
||||||
|
|
||||||
|
<!-- Inicio del segundo tab para cursos -->
|
||||||
|
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
|
||||||
|
<p style="color: black;">
|
||||||
|
<b>
|
||||||
|
alemán, chino, coreano, finés, francés, inglés, italiano, japonés, latín, portugués y ruso.
|
||||||
|
</b>
|
||||||
|
</p>
|
||||||
|
<p style="color: rgb(43, 42, 42);">
|
||||||
|
Se abren tres convocatorias al año cercanas a las siguientes fechas:
|
||||||
|
</p>
|
||||||
|
<ul>
|
||||||
|
<li style="color: black;">
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>Cursos en enero:</b> se publica a finales del mes de noviembre.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li style="color: black;">
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>Cursos en abril:</b> se publica a mediados del mes de marzo.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li style="color: black;">
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>Cursos en agosto:</b> se publica a finales del mes de junio.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
Generalmente son:
|
||||||
|
</p>
|
||||||
|
<ul style="color: black;">
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">Cursos de 12 sábados: </p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
Matutinos de 9:00 a 13:00 horas.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
Vespertinos de 14:00 a 18:00 horas.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
CL intensivo: 9:00 a 16:00 hrs.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul style="color: black;">
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">Cursos de 11 sábados: </p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
Matutinos de 9:00 a 13:30 horas.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
Vespertinos de 14:00 a 18:30 horas.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
CL intensivo: 9:00 a 16:30 hrs.
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<p style="color: rgb(43, 42, 42)">
|
||||||
|
<b>
|
||||||
|
Para mayor información, revisa la convocatoria en la sección Isncripción Cursos Sabatinos.
|
||||||
|
</b>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del segundo tab para cursos -->
|
||||||
|
</div>
|
||||||
|
<!-- Fin de los tabs para cursos -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section><!-- End Hero -->
|
</section>
|
||||||
|
|
||||||
|
<!-- ========== Section Contacto ========== -->
|
||||||
|
<secion id="Contacto" class="d-flex align-items-center justify-content-center">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-lg-3">
|
||||||
|
<ul id="tab-Contacto" class="nav d-flex d-lg-block contenedor list-unstyled">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" id="home2-tab" data-toggle="tab" href="#home2" role="tab" aria-controls="home2"
|
||||||
|
aria-selected="true">
|
||||||
|
Contacto
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile2-tab" data-toggle="tab" href="#profile2" role="tab"
|
||||||
|
aria-controls="profile2" aria-selected="false">
|
||||||
|
Nuestros Idiomas
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile3-tab" data-toggle="tab" href="#profile3" role="tab"
|
||||||
|
aria-controls="profile3" aria-selected="false">
|
||||||
|
Cuotas
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile4-tab" data-toggle="tab" href="#profile4" role="tab"
|
||||||
|
aria-controls="profile4" aria-selected="false">
|
||||||
|
Excención y Cuota Preferenciales
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile5-tab" data-toggle="tab" href="#profile5" role="tab"
|
||||||
|
aria-controls="profile5" aria-selected="false">
|
||||||
|
Trámites
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile6-tab" data-toggle="tab" href="#profile6" role="tab"
|
||||||
|
aria-controls="profile6" aria-selected="false">
|
||||||
|
Exámen de Requisito
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile7-tab" data-toggle="tab" href="#profile7" role="tab"
|
||||||
|
aria-controls="profile7" aria-selected="false">
|
||||||
|
Traducciones
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-9">
|
||||||
|
<!-- Inicio de los tabs -->
|
||||||
|
<div class="tab-content mt-2" id="myTabContent">
|
||||||
|
<!-- Inicio del primer tab -->
|
||||||
|
<div class="tab-pane fade show active" id="home2" role="tabpanel" aria-labelledby="home2-tab">
|
||||||
|
<div class="border-bottom">
|
||||||
|
<h3 style="color:#1e3c70"> Contacto</h3>
|
||||||
|
</div>
|
||||||
|
<p style="color: #1e3c70;">
|
||||||
|
En caso de duadas o más información relacionados con tu idioma, contacta con con el
|
||||||
|
área de tu interés:
|
||||||
|
</p>
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">
|
||||||
|
Área
|
||||||
|
</th>
|
||||||
|
<th scope="col">
|
||||||
|
Contacto
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody class="table-group-divider">
|
||||||
|
<tr>
|
||||||
|
<td>Alemán y Ruso</td>
|
||||||
|
<td>aleman@acatlan.unam.mx</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Árabe, Chino, Coreano y Japonés</td>
|
||||||
|
<td>espanol@acatlan.unam.mx</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Francés</td>
|
||||||
|
<td>
|
||||||
|
frances@acatlan.unam.mx
|
||||||
|
<br>
|
||||||
|
WhatsApp: 5540936804
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Inglés</td>
|
||||||
|
<td>
|
||||||
|
ingles@acatlan.unam.mx
|
||||||
|
<br>
|
||||||
|
deptoingles@acatlan.unam.mx
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Italiano y Latín</td>
|
||||||
|
<td>
|
||||||
|
italiano@acatlan.unam.mx
|
||||||
|
<br>
|
||||||
|
WhatsApp: 5549266745
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Finés y Portugués</td>
|
||||||
|
<td>portugues@acatlan.unam.mx</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
Registro y Certificación del
|
||||||
|
<br>
|
||||||
|
Centro de Enseñanzas de Idiomas
|
||||||
|
</td>
|
||||||
|
<td>registro@acatlan.unam.mx</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del primer tab -->
|
||||||
|
|
||||||
|
<!-- Inicio del segundo tab -->
|
||||||
|
<div class="tab-pane fade" id="profile2" role="tabpanel" aria-labelledby="profile2-tab">
|
||||||
|
<p>Contenido del segundo tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del segundo tab -->
|
||||||
|
|
||||||
|
<!-- Inicio de tercer tab -->
|
||||||
|
<div class="tab-pane fade" id="profile3" role="tabpanel" aria-labelledby="profile3-tab">
|
||||||
|
<p>Contenido del tercer tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del tercer tab -->
|
||||||
|
|
||||||
|
<!-- Inicio del cuarto tab -->
|
||||||
|
<div class="tab-pane fade" id="profile4" role="tabpanel" aria-labelledby="profile4-tab">
|
||||||
|
<p>Contenido del segundo tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del cuarto tab -->
|
||||||
|
|
||||||
|
<!-- Inicio de quinto tab -->
|
||||||
|
<div class="tab-pane fade" id="profile5" role="tabpanel" aria-labelledby="profile5-tab">
|
||||||
|
<p>Contenido del tercer tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del quinto tab -->
|
||||||
|
|
||||||
|
<!-- Inicio del sexto tab -->
|
||||||
|
<div class="tab-pane fade" id="profile6" role="tabpanel" aria-labelledby="profile6-tab">
|
||||||
|
<p>Contenido del segundo tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del sexto tab -->
|
||||||
|
|
||||||
|
<!-- Inicio de septimo tab -->
|
||||||
|
<div class="tab-pane fade" id="profile7" role="tabpanel" aria-labelledby="profile7-tab">
|
||||||
|
<p>Contenido del tercer tab</p>
|
||||||
|
</div>
|
||||||
|
<!-- Fin del septimo tab -->
|
||||||
|
</div>
|
||||||
|
<!-- Fin de los tabs -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</secion>
|
||||||
|
<!-- ========== Fin Contacto ========== -->
|
||||||
|
|
||||||
<main id="main">
|
<main id="main">
|
||||||
|
|
||||||
@@ -113,20 +488,20 @@
|
|||||||
<div class="footer-top">
|
<div class="footer-top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
|
|
||||||
<div class="col-lg-4 col-md-6 footer-newsletter">
|
<div class="col-lg-4 col-md-6 footer-newsletter">
|
||||||
<h4>Redes Sociales</h4>
|
<h4>Redes Sociales</h4>
|
||||||
Siguenos en:
|
Siguenos en:
|
||||||
<div class="social-links mt-3">
|
<div class="social-links mt-3">
|
||||||
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
|
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
|
||||||
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
|
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
|
||||||
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
|
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
|
||||||
<a href="#" class="google-plus"><i class='bx bxl-youtube' ></i></a>
|
<a href="#" class="google-plus"><i class='bx bxl-youtube'></i></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<img src="../assets/img/escudos/unam-nacion-blanco.png" style="width: 150px;; margin: 15px auto;">
|
<img src="../assets/img/escudos/unam-nacion-blanco.png" style="width: 150px;; margin: 15px auto;">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-lg-2 col-md-6 footer-links">
|
<div class="col-lg-2 col-md-6 footer-links">
|
||||||
@@ -152,19 +527,21 @@
|
|||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="col-lg-4 col-md-6">
|
<div class="col-lg-4 col-md-6">
|
||||||
<div class="footer-info">
|
<div class="footer-info">
|
||||||
<h3>FES <span>Acatlán</span></h3>
|
<h3>FES <span>Acatlán</span></h3>
|
||||||
<p>
|
<p>
|
||||||
Hecho en México, todos los derechos reservados 2021.
|
Hecho en México, todos los derechos reservados 2021.
|
||||||
<br><br> Esta página puede ser reproducida con fines no lucrativos, siempre y cuando no se mutile, se cite la fuente completa y su dirección electrónica. De otra forma, requiere permiso previo por escrito de la institución.
|
<br><br> Esta página puede ser reproducida con fines no lucrativos, siempre y cuando no se mutile, se
|
||||||
|
cite la fuente completa y su dirección electrónica. De otra forma, requiere permiso previo por escrito
|
||||||
|
de la institución.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -183,7 +560,36 @@
|
|||||||
|
|
||||||
<!-- Main JS -->
|
<!-- Main JS -->
|
||||||
<script src="../assets/js/main.js"></script>
|
<script src="../assets/js/main.js"></script>
|
||||||
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
<!-- <section class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12 col-lg-6"></div>
|
||||||
|
<div class="col-12 col-lg-6">
|
||||||
|
<ul class="nav tabs" id="myTab" role="tablist">
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link active" id="home-tab" data-toggle="tab" href="#home" role="tab" aria-controls="home"
|
||||||
|
aria-selected="true">Cursos Regulares</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<a class="nav-link" id="profile-tab" data-toggle="tab" href="#profile" role="tab" aria-controls="profile"
|
||||||
|
aria-selected="false">Sabatinos</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<div class="tab-content mt-2" id="myTabContent">
|
||||||
|
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
|
||||||
|
<h4>Contenido de Tab 1</h4>
|
||||||
|
<p>Este es el contenido que aparece cuando seleccionas la primera pestaña.</p>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
|
||||||
|
<h4>Contenido de Tab 2</h4>
|
||||||
|
<p>Este es el contenido que aparece cuando seleccionas la segunda pestaña.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section> -->
|
||||||
+3
-1
@@ -75,7 +75,9 @@
|
|||||||
<img src="https://www.acatlan.unam.mx/images/1981.jpg" class="d-block w-100" alt="...">
|
<img src="https://www.acatlan.unam.mx/images/1981.jpg" class="d-block w-100" alt="...">
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-item">
|
<div class="carousel-item">
|
||||||
<img src="https://www.acatlan.unam.mx/images/1953.png" class="d-block w-100" alt="...">
|
<a href="idiomas/index.html">
|
||||||
|
<img src="https://www.acatlan.unam.mx/images/1953.png" class="d-block w-100" alt="...">
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="carousel-item">
|
<div class="carousel-item">
|
||||||
<img src="https://www.acatlan.unam.mx/images/1939.jpg" class="d-block w-100" alt="...">
|
<img src="https://www.acatlan.unam.mx/images/1939.jpg" class="d-block w-100" alt="...">
|
||||||
|
|||||||
Reference in New Issue
Block a user