-
Notifications
You must be signed in to change notification settings - Fork 2
/
minsalWeb_example.html
1354 lines (864 loc) · 89.8 KB
/
minsalWeb_example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9">
<link rel="stylesheet" href="https://www.minsal.cl/wp-content/themes/gobcl-wp-master2/css/ie.css">
<![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>
Casos confirmados en Chile COVID-19 - Ministerio de Salud - Gobierno de Chile </title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://www.minsal.cl/wp-content/themes/gobcl-wp-master2/css/main.css">
<link rel="stylesheet" href="https://www.minsal.cl/wp-content/themes/gobcl-wp-master2/css/widget2018.css">
<link rel="shortcut icon" type="image/x-icon" href="https://www.minsal.cl/wp-content/themes/gobcl-wp-master2/img/gob_favicon.ico" />
<!-- Facebook -->
<meta property="og:title" content="Casos confirmados en Chile COVID-19" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/" />
<meta property="og:image" content="https://www.minsal.cl/wp-content/uploads/2020/02/banner-plan-de-accion-coronavirus_660x220-1-150x150.png" />
<meta property="og:site_name" content="Ministerio de Salud – Gobierno de Chile">
<meta property="og:description" content=" Casos COVID-19 en Chile Casos confirmados acumulados Casos nuevos totales Casos nuevos con síntomas Casos nuevos sin síntomas* Casos nuevos sin notificar** Casos activos confirmados Fallecidos totales*** Casos confirmados recuperados **** Arica y Parinacota 1.685 36 31 5 0...">
<!-- ToDo: Twitter -->
<link rel='dns-prefetch' href='//ajax.googleapis.com' />
<link rel='dns-prefetch' href='//s7.addthis.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.minsal.cl\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.2.2"}};
!function(a,b,c){function d(a,b){var c=String.fromCharCode;l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,a),0,0);var d=k.toDataURL();l.clearRect(0,0,k.width,k.height),l.fillText(c.apply(this,b),0,0);var e=k.toDataURL();return d===e}function e(a){var b;if(!l||!l.fillText)return!1;switch(l.textBaseline="top",l.font="600 32px Arial",a){case"flag":return!(b=d([55356,56826,55356,56819],[55356,56826,8203,55356,56819]))&&(b=d([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]),!b);case"emoji":return b=d([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340]),!b}return!1}function f(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var g,h,i,j,k=b.createElement("canvas"),l=k.getContext&&k.getContext("2d");for(j=Array("flag","emoji"),c.supports={everything:!0,everythingExceptFlag:!0},i=0;i<j.length;i++)c.supports[j[i]]=e(j[i]),c.supports.everything=c.supports.everything&&c.supports[j[i]],"flag"!==j[i]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[j[i]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(h=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",h,!1),a.addEventListener("load",h,!1)):(a.attachEvent("onload",h),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),g=c.source||{},g.concatemoji?f(g.concatemoji):g.wpemoji&&g.twemoji&&(f(g.twemoji),f(g.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://www.minsal.cl/wp-includes/css/dist/block-library/style.min.css?ver=5.2.2' type='text/css' media='all' />
<link rel='stylesheet' id='bg-shce-genericons-css' href='https://www.minsal.cl/wp-content/plugins/show-hidecollapse-expand/assets/css/genericons/genericons.css?ver=5.2.2' type='text/css' media='all' />
<link rel='stylesheet' id='bg-show-hide-css' href='https://www.minsal.cl/wp-content/plugins/show-hidecollapse-expand/assets/css/bg-show-hide.css?ver=5.2.2' type='text/css' media='all' />
<link rel='stylesheet' id='wp-pagenavi-css' href='https://www.minsal.cl/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70' type='text/css' media='all' />
<link rel='stylesheet' id='recent-posts-widget-with-thumbnails-public-style-css' href='https://www.minsal.cl/wp-content/plugins/recent-posts-widget-with-thumbnails/public.css?ver=6.5.1' type='text/css' media='all' />
<link rel='stylesheet' id='addthis_all_pages-css' href='https://www.minsal.cl/wp-content/plugins/addthis/frontend/build/addthis_wordpress_public.min.css?ver=5.2.2' type='text/css' media='all' />
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js?ver=5.2.2'></script>
<script type='text/javascript' src='https://www.minsal.cl/wp-content/plugins/stop-user-enumeration/frontend/js/frontend.js?ver=1.3.22'></script>
<link rel='https://api.w.org/' href='https://www.minsal.cl/wp-json/' />
<link rel="alternate" type="application/json+oembed" href="https://www.minsal.cl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.minsal.cl%2Fnuevo-coronavirus-2019-ncov%2Fcasos-confirmados-en-chile-covid-19%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.minsal.cl/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.minsal.cl%2Fnuevo-coronavirus-2019-ncov%2Fcasos-confirmados-en-chile-covid-19%2F&format=xml" />
<script language="JavaScript" type="text/javascript"><!--
function expand(param) {
jQuery("div"+param).stop().slideToggle("slow", function() {
linkname = jQuery("a"+param).html();
if( jQuery("div"+param).is(":visible") ) {
jQuery("a"+param).html(expand_text+" "+linkname.substring(collapse_text_length));
}
else {
jQuery("a"+param).html(collapse_text+" "+linkname.substring(expand_text_length));
}
});
}
function expander_hide(param) {
jQuery("div"+param).hide();
linkname = jQuery("a"+param).html();
collapse_text = "⇓";
expand_text = "⇑";
collapse_text_length = jQuery("<span />").html(collapse_text).text().length;
expand_text_length = jQuery("<span />").html(collapse_text).text().length;
jQuery("a"+param).html(collapse_text + " " + linkname);
jQuery("a"+param).show();
}
//--></script>
</head>
<body class="page-template-default page page-id-52453 page-child parent-pageid-51674">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
// reemplazar ID_DEL_APP_DE_FACEBOOK
js.src = "//connect.facebook.net/es_LA/sdk.js#xfbml=1&appId=ID_DEL_APP_DE_FACEBOOK&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="menu-movil">
<div class="wrap">
<nav id="menu-principal">
<!-- Menu Principal - Móvil -->
<ul id="menu-main-menu" class="menu-main"><li id="menu-item-195" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-195"><a>Ministerio de Salud</a>
<ul class="sub-menu">
<li id="menu-item-203" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-203"><a href="https://www.minsal.cl/mision-y-vision/">Misión y Visión</a></li>
<li id="menu-item-227" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-227"><a href="https://www.minsal.cl/funciones-objetivos/">Funciones y Objetivos</a></li>
<li id="menu-item-34755" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34755"><a href="https://www.minsal.cl/ministro-de-salud/">Trayectoria Ministro</a></li>
<li id="menu-item-211" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-211"><a href="https://www.minsal.cl/historial-de-ministros-de-salud/">Histórico de Ministros</a></li>
<li id="menu-item-214" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-214"><a href="https://www.minsal.cl/historia-del-minsal/">Historia del Minsal</a></li>
<li id="menu-item-220" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-220"><a href="https://www.minsal.cl/hitos-de-la-salud-chilena/">Hitos de la salud chilena</a></li>
<li id="menu-item-277" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-277"><a href="https://www.minsal.cl/division-juridica/">División Jurídica</a></li>
<li id="menu-item-2184" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2184"><a href="https://ocai.minsal.cl">Oficina de Cooperación y Asuntos Internacionales</a></li>
<li id="menu-item-38991" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38991"><a href="https://www.minsal.cl/unidad-de-genero/">Unidad de Género</a></li>
</ul>
</li>
<li id="menu-item-196" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-196"><a>Salud Pública</a>
<ul class="sub-menu">
<li id="menu-item-229" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-229"><a href="https://www.minsal.cl/mision-y-funciones/">Misión y Funciones</a></li>
<li id="menu-item-34775" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34775"><a href="https://www.minsal.cl/subsecretaria-de-salud-publica/">Trayectoria Subsecretaria</a></li>
<li id="menu-item-235" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-235"><a href="https://www.minsal.cl/secretarias-regionales-ministeriales-de-salud/">Seremis de Salud</a></li>
<li id="menu-item-238" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-238"><a href="https://www.minsal.cl/organigrama/">Organigrama</a></li>
<li id="menu-item-3548" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3548"><a href="https://dipol.minsal.cl/">DIPOL</a></li>
<li id="menu-item-45273" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45273"><a href="https://diplas.minsal.cl/">DIPLAS</a></li>
<li id="menu-item-2183" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2183"><a href="https://deis.minsal.cl/">Estadísticas de Salud</a></li>
<li id="menu-item-6681" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6681"><a href="https://diprece.minsal.cl/">DIPRECE</a></li>
</ul>
</li>
<li id="menu-item-197" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-197"><a>Redes Asistenciales</a>
<ul class="sub-menu">
<li id="menu-item-241" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-241"><a href="https://www.minsal.cl/mision-y-funciones-2/">Misión y Funciones</a></li>
<li id="menu-item-34779" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34779"><a href="https://www.minsal.cl/subsecretario-de-redes-asistenciales/">Trayectoria Subsecretario</a></li>
<li id="menu-item-247" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-247"><a href="https://www.minsal.cl/servicios-de-salud/">Servicios de Salud</a></li>
<li id="menu-item-250" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-250"><a href="https://www.minsal.cl/organigrama-2/">Organigrama</a></li>
<li id="menu-item-49656" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49656"><a href="https://plandeinversionesensalud.minsal.cl/">Plan de Inversiones en Salud</a></li>
</ul>
</li>
<li id="menu-item-198" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-198"><a> Informamos </a>
<ul class="sub-menu">
<li id="menu-item-28196" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-28196"><a href="https://diprece.minsal.cl/?p=15098">Guías de Práctica Clínicas</a></li>
<li id="menu-item-10334" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10334"><a href="https://web.minsal.cl/dona-sangre/">Dona Sangre</a></li>
<li id="menu-item-253" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-253"><a href="https://www.minsal.cl/derechos-y-deberes-de-los-pacientes/">Derechos y deberes del paciente</a></li>
<li id="menu-item-1842" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1842"><a href="https://yodonovida.minsal.cl/">Donación y trasplantes</a></li>
<li id="menu-item-2305" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2305"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/reglamento-sanitario-de-los-alimentos/">Reglamento Sanitario de los Alimentos</a></li>
<li id="menu-item-503" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-503"><a target="_blank" rel="noopener noreferrer" href="http://www.infocompin.cl/">Compin</a></li>
<li id="menu-item-505" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-505"><a target="_blank" rel="noopener noreferrer" href="http://prais.redsalud.gob.cl/">Prais</a></li>
<li id="menu-item-504" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-504"><a target="_blank" rel="noopener noreferrer" href="http://www.bibliotecaminsal.cl/">Biblioteca de Salud</a></li>
<li id="menu-item-1847" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1847"><a href="/auspicios-y-patrocinios">Auspicios y Patrocinios</a></li>
<li id="menu-item-1525" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1525"><a target="_blank" rel="noopener noreferrer" href="http://www.salud-e.cl/">Estrategia Digital de Salud</a></li>
<li id="menu-item-2193" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2193"><a href="https://web.minsal.cl/capacidad-formadora/">Capacidad Formadora</a></li>
<li id="menu-item-2198" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2198"><a href="https://web.minsal.cl/orientaciones-para-la-planificacion-y-programacion-en-red/">Orientaciones para la Planificación y Programación en Red</a></li>
</ul>
</li>
<li id="menu-item-1272" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1272"><a> Temas de Salud </a>
<ul class="sub-menu">
<li id="menu-item-1273" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1273"><a href="/problemas_orden_alfabetico">Enfermedades por orden alfabético</a></li>
<li id="menu-item-1275" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1275"><a href="/determinantes-sociales-en-salud">Determinantes Sociales</a></li>
<li id="menu-item-1308" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1308"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/">Alimentos y Nutrición</a></li>
<li id="menu-item-1276" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1276"><a href="/economia-de-la-salud">Economia de la Salud</a></li>
<li id="menu-item-1277" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1277"><a href="/epidemiologia">Epidemiologia</a></li>
<li id="menu-item-1298" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="/medicamentos">Medicamentos</a></li>
<li id="menu-item-1299" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1299"><a href="/medicinas-complementarias">Medicinas Complementarias</a></li>
<li id="menu-item-1300" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="/participacion-ciudadana-en-salud">Participación Ciudadana en Salud</a></li>
<li id="menu-item-1301" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="/calidad-y-seguridad-del-paciente">Calidad y Seguridad del Paciente</a></li>
<li id="menu-item-1302" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="/vihsida-e-its">VIH/SIDA e ITS</a></li>
<li id="menu-item-1303" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a target="_blank" rel="noopener noreferrer" href="https://estrategia.minsal.cl/">Estrategia Nacional de Salud</a></li>
<li id="menu-item-1304" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="/regulacion-de-profesiones-medicas">Prestadores de Salud – Profesiones Médicas</a></li>
<li id="menu-item-1305" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="https://dipol.minsal.cl/departamentos-2/promocion-de-la-salud-y-participacion-ciudadana/">Promoción de Salud y Participación Ciudadana</a></li>
<li id="menu-item-1306" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1306"><a target="_blank" rel="noopener noreferrer" href="http://ish.redsalud.gob.cl/">Bioética</a></li>
<li id="menu-item-1307" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1307"><a href="https://dipol.minsal.cl/departamentos-2/salud-ambiental/%20">Salud Ambiental</a></li>
<li id="menu-item-20581" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20581"><a href="https://dipol.minsal.cl/departamentos-2/salud-ambiental/seguridad-quimica/%20">Sustancias Químicas Peligrosas</a></li>
<li id="menu-item-1278" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1278"><a href="https://web.minsal.cl/etesa-objetivos/">Evaluación de Tecnologías Sanitarias (ETESA)</a></li>
</ul>
</li>
<li id="menu-item-1271" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1271"><a> Protección de Salud </a>
<ul class="sub-menu">
<li id="menu-item-11366" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11366"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/programas-alimentarios">Programas Alimentarios</a></li>
<li id="menu-item-1274" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1274"><a target="_blank" rel="noopener noreferrer" href="https://rehabilitacion.minsal.cl/">Rehabilitación y Discapacidad</a></li>
<li id="menu-item-1309" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1309"><a target="_blank" rel="noopener noreferrer" href="https://www.redcronicas.cl/">Enfermedades No Transmisibles y Cancer</a></li>
<li id="menu-item-1311" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1311"><a href="/prevencion-del-consumo-de-tabaco">Prevención del consumo del Tabaco</a></li>
<li id="menu-item-1312" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1312"><a href="https://diprece.minsal.cl/programas-de-salud/cancer-y-otros-tumores/">Programa Nacional de Cáncer</a></li>
<li id="menu-item-1313" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1313"><a href="/programa-nacional-de-inmunizaciones">Programa Nacional de Inmunizaciones</a></li>
<li id="menu-item-1319" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1319"><a href="https://diprece.minsal.cl/programas-de-salud/programas-ciclo-vital/programa-nacional-de-salud-de-la-infancia/">Salud Infantil</a></li>
<li id="menu-item-1316" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1316"><a href="/salud-de-la-mujer">Salud de la Mujer</a></li>
<li id="menu-item-1314" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1314"><a href="https://diprece.minsal.cl/?p=4052">Programa Salud Integral Adolescentes y Jóvenes</a></li>
<li id="menu-item-1315" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1315"><a href="https://diprece.minsal.cl/?page_id=521">Salud Bucal</a></li>
<li id="menu-item-1317" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1317"><a href="/salud-del-adulto-mayor">Salud del Adulto Mayor</a></li>
<li id="menu-item-1318" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1318"><a href="/salud-del-inmigrante">Salud del Inmigrante</a></li>
<li id="menu-item-1320" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1320"><a href="/salud-mental">Salud Mental</a></li>
<li id="menu-item-1321" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1321"><a href="https://dipol.minsal.cl/departamentos-2/salud-ocupacional/">Salud Ocupacional</a></li>
<li id="menu-item-1322" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1322"><a href="/salud-sexual-y-reproductiva">Salud sexual y reproductiva</a></li>
<li id="menu-item-49776" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49776"><a href="https://dipol.minsal.cl/oficinas-2/zoonozis-y-control-de-vectores/tenencia-responsable-de-mascotas-y-salud-humana/">Tenencia responsale de mascotas</a></li>
</ul>
</li>
</ul> </nav>
</div>
</div>
<header style="background-image:url('https://www.minsal.cl/wp-content/uploads/2020/03/header-1920x1440_coronavirus.png')">
<div class="wrap">
<h1 id="logo-main">
<a href="https://web.minsal.cl">
<img src="https://www.minsal.cl/wp-content/uploads/2017/03/logo-180x180-1.png">
</a>
</h1>
<script type="text/javascript">
window.____aParams = {"gobabierto":"1","buscadore":"1","icons":"1"};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = document.location.protocol + '//apis.modernizacion.cl/barra/js/barraEstado.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
<nav id="menu-principal">
<!-- Menu Principal -->
<ul id="menu-main-menu" class="menu-main"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-195"><a>Ministerio de Salud</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-203"><a href="https://www.minsal.cl/mision-y-vision/">Misión y Visión</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-227"><a href="https://www.minsal.cl/funciones-objetivos/">Funciones y Objetivos</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34755"><a href="https://www.minsal.cl/ministro-de-salud/">Trayectoria Ministro</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-211"><a href="https://www.minsal.cl/historial-de-ministros-de-salud/">Histórico de Ministros</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-214"><a href="https://www.minsal.cl/historia-del-minsal/">Historia del Minsal</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-220"><a href="https://www.minsal.cl/hitos-de-la-salud-chilena/">Hitos de la salud chilena</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-277"><a href="https://www.minsal.cl/division-juridica/">División Jurídica</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2184"><a href="https://ocai.minsal.cl">Oficina de Cooperación y Asuntos Internacionales</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-38991"><a href="https://www.minsal.cl/unidad-de-genero/">Unidad de Género</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-196"><a>Salud Pública</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-229"><a href="https://www.minsal.cl/mision-y-funciones/">Misión y Funciones</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34775"><a href="https://www.minsal.cl/subsecretaria-de-salud-publica/">Trayectoria Subsecretaria</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-235"><a href="https://www.minsal.cl/secretarias-regionales-ministeriales-de-salud/">Seremis de Salud</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-238"><a href="https://www.minsal.cl/organigrama/">Organigrama</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-3548"><a href="https://dipol.minsal.cl/">DIPOL</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-45273"><a href="https://diplas.minsal.cl/">DIPLAS</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2183"><a href="https://deis.minsal.cl/">Estadísticas de Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-6681"><a href="https://diprece.minsal.cl/">DIPRECE</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-197"><a>Redes Asistenciales</a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-241"><a href="https://www.minsal.cl/mision-y-funciones-2/">Misión y Funciones</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-34779"><a href="https://www.minsal.cl/subsecretario-de-redes-asistenciales/">Trayectoria Subsecretario</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-247"><a href="https://www.minsal.cl/servicios-de-salud/">Servicios de Salud</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-250"><a href="https://www.minsal.cl/organigrama-2/">Organigrama</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49656"><a href="https://plandeinversionesensalud.minsal.cl/">Plan de Inversiones en Salud</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-198"><a> Informamos </a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-28196"><a href="https://diprece.minsal.cl/?p=15098">Guías de Práctica Clínicas</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-10334"><a href="https://web.minsal.cl/dona-sangre/">Dona Sangre</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-253"><a href="https://www.minsal.cl/derechos-y-deberes-de-los-pacientes/">Derechos y deberes del paciente</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1842"><a href="https://yodonovida.minsal.cl/">Donación y trasplantes</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2305"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/reglamento-sanitario-de-los-alimentos/">Reglamento Sanitario de los Alimentos</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-503"><a target="_blank" rel="noopener noreferrer" href="http://www.infocompin.cl/">Compin</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-505"><a target="_blank" rel="noopener noreferrer" href="http://prais.redsalud.gob.cl/">Prais</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-504"><a target="_blank" rel="noopener noreferrer" href="http://www.bibliotecaminsal.cl/">Biblioteca de Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1847"><a href="/auspicios-y-patrocinios">Auspicios y Patrocinios</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1525"><a target="_blank" rel="noopener noreferrer" href="http://www.salud-e.cl/">Estrategia Digital de Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2193"><a href="https://web.minsal.cl/capacidad-formadora/">Capacidad Formadora</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2198"><a href="https://web.minsal.cl/orientaciones-para-la-planificacion-y-programacion-en-red/">Orientaciones para la Planificación y Programación en Red</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1272"><a> Temas de Salud </a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1273"><a href="/problemas_orden_alfabetico">Enfermedades por orden alfabético</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1275"><a href="/determinantes-sociales-en-salud">Determinantes Sociales</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1308"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/">Alimentos y Nutrición</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1276"><a href="/economia-de-la-salud">Economia de la Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1277"><a href="/epidemiologia">Epidemiologia</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1298"><a href="/medicamentos">Medicamentos</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1299"><a href="/medicinas-complementarias">Medicinas Complementarias</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1300"><a href="/participacion-ciudadana-en-salud">Participación Ciudadana en Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1301"><a href="/calidad-y-seguridad-del-paciente">Calidad y Seguridad del Paciente</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1302"><a href="/vihsida-e-its">VIH/SIDA e ITS</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1303"><a target="_blank" rel="noopener noreferrer" href="https://estrategia.minsal.cl/">Estrategia Nacional de Salud</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1304"><a href="/regulacion-de-profesiones-medicas">Prestadores de Salud – Profesiones Médicas</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1305"><a href="https://dipol.minsal.cl/departamentos-2/promocion-de-la-salud-y-participacion-ciudadana/">Promoción de Salud y Participación Ciudadana</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1306"><a target="_blank" rel="noopener noreferrer" href="http://ish.redsalud.gob.cl/">Bioética</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1307"><a href="https://dipol.minsal.cl/departamentos-2/salud-ambiental/%20">Salud Ambiental</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20581"><a href="https://dipol.minsal.cl/departamentos-2/salud-ambiental/seguridad-quimica/%20">Sustancias Químicas Peligrosas</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1278"><a href="https://web.minsal.cl/etesa-objetivos/">Evaluación de Tecnologías Sanitarias (ETESA)</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-1271"><a> Protección de Salud </a>
<ul class="sub-menu">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11366"><a href="https://dipol.minsal.cl/departamentos-2/nutricion-y-alimentos/programas-alimentarios">Programas Alimentarios</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1274"><a target="_blank" rel="noopener noreferrer" href="https://rehabilitacion.minsal.cl/">Rehabilitación y Discapacidad</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1309"><a target="_blank" rel="noopener noreferrer" href="https://www.redcronicas.cl/">Enfermedades No Transmisibles y Cancer</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1311"><a href="/prevencion-del-consumo-de-tabaco">Prevención del consumo del Tabaco</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1312"><a href="https://diprece.minsal.cl/programas-de-salud/cancer-y-otros-tumores/">Programa Nacional de Cáncer</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1313"><a href="/programa-nacional-de-inmunizaciones">Programa Nacional de Inmunizaciones</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1319"><a href="https://diprece.minsal.cl/programas-de-salud/programas-ciclo-vital/programa-nacional-de-salud-de-la-infancia/">Salud Infantil</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1316"><a href="/salud-de-la-mujer">Salud de la Mujer</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1314"><a href="https://diprece.minsal.cl/?p=4052">Programa Salud Integral Adolescentes y Jóvenes</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1315"><a href="https://diprece.minsal.cl/?page_id=521">Salud Bucal</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1317"><a href="/salud-del-adulto-mayor">Salud del Adulto Mayor</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1318"><a href="/salud-del-inmigrante">Salud del Inmigrante</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1320"><a href="/salud-mental">Salud Mental</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1321"><a href="https://dipol.minsal.cl/departamentos-2/salud-ocupacional/">Salud Ocupacional</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1322"><a href="/salud-sexual-y-reproductiva">Salud sexual y reproductiva</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-49776"><a href="https://dipol.minsal.cl/oficinas-2/zoonozis-y-control-de-vectores/tenencia-responsable-de-mascotas-y-salud-humana/">Tenencia responsale de mascotas</a></li>
</ul>
</li>
</ul> </nav>
<a href="#" id="menu-movil-trigger">Menú Principal</a>
</div>
</script>
<!--[if lt IE 9]><script src="/sites/all/themes/minsal/js/html5.js"></script><![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22054007-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</header>
<div id="content">
<div class="wrap">
<div id="main">
<div id="breadcrumbs">
<ul>
<li><a href="https://www.minsal.cl">Inicio</a></li>
<li class="sep">/</li>
<li>Casos confirmados en Chile COVID-19 »</li>
</ul>
<div class="clearfix"></div>
</div>
<div class="post">
<div class="post-header" style="background:url(https://www.minsal.cl/wp-content/uploads/2020/02/banner-plan-de-accion-coronavirus_660x220-1-660x220.png) no-repeat;">
<!-- Custom field - Título paginas -->
<h4></h4>
<h3></h3>
</div>
<!-- <div class="social">
<ul>
<li>
<div class="fb-like" data-href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/" data-layout="button_count" data-action="like" data-show-faces="false" data-share="true"></div>
</li>
<li>
<a href="https://twitter.com/share" class="twitter-share-button" data-lang="es">Twittear</a>
</li>
</ul>
</div> -->
<div class="fontsize">
<ul>
<li class="small"><a data-size="10">a</a></li>
<li class="medium current"><a data-size="15">a</a></li>
<li class="large"><a data-size="20">a</a></li>
</ul>
</div>
<div class="clearfix"></div>
<div class="texto">
<h3 class="title">Casos confirmados en Chile COVID-19</h3>
<div class="contenido">
<div class="at-above-post-page addthis_tool" data-url="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/"></div><p> </p>
<table style="border-collapse: collapse; width: 84.9638%; height: 528px;" border="1">
<tbody>
<tr style="height: 24px;">
<td style="width: 20%; height: 48px;" rowspan="2" bgcolor="36A9E1"></td>
<td style="text-align: center; height: 24px; width: 163.095%;" colspan="8" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos COVID-19 en Chile</strong></span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos confirmados acumulados</strong></span></td>
<td style="width: 26.6116%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="font-size: 10pt;"><span style="color: #ffffff;"><strong>Casos nuevos<br />
</strong></span><span style="color: #ffffff;"><strong>totales</strong></span></span></td>
<td style="width: 13.3884%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos<br />
nuevos con síntomas</strong></span></td>
<td style="width: 20%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos nuevos sin síntomas<span style="font-size: 8pt;">*</span></strong></span></td>
<td style="width: 20%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos nuevos sin notificar<span style="font-size: 8pt;">**</span></strong></span></td>
<td style="width: 20%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Casos activos confirmados</strong></span></td>
<td style="width: 40.3027%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="color: #ffffff; font-size: 10pt;"><strong>Fallecidos totales<span style="font-size: 8pt;">***</span></strong></span></td>
<td style="width: 2.79228%; text-align: center; height: 24px;" bgcolor="36A9E1"><span style="font-size: 10pt;"><span style="color: #ffffff;"><strong>Casos confirmados recuperados </strong></span><span style="color: #ffffff; font-size: 8pt;"><strong>****</strong></span></span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 28px;"><span style="font-size: 10pt;">Arica y Parinacota</span></td>
<td style="width: 20%; height: 28px; text-align: center;"><span style="font-size: 10pt;">1.685</span></td>
<td style="width: 26.6116%; height: 28px; text-align: center;"><span style="font-size: 10pt;">36</span></td>
<td style="width: 13.3884%; height: 28px; text-align: center;"><span style="font-size: 10pt;">31</span></td>
<td style="width: 20%; height: 28px; text-align: center;"><span style="font-size: 10pt;">5</span></td>
<td style="width: 20%; height: 28px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 28px; text-align: center;"><span style="font-size: 10pt;">365</span></td>
<td style="width: 40.3027%; height: 28px; text-align: center;"><span style="font-size: 10pt;">20</span></td>
<td style="width: 2.79228%; height: 28px; text-align: center;"><span style="font-size: 10pt;">1.299</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Tarapacá</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5.974</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">81</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">61</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">15</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">819</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">91</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5.068</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Antofagasta</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">8.625</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">317</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">253</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">38</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">26</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.774</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">147</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">6.616</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Atacama</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.006</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">50</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">32</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">17</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">313</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">689</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Coquimbo</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.961</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">104</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">67</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">17</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">20</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">692</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">23</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.263</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Valparaíso</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">11.541</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">234</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">193</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">16</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">25</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.089</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">229</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">9.085</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Metropolitana</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">216.896</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.508</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.913</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">226</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">369</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">21.476</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">4.777</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">190.688</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 22px;"><span style="font-size: 10pt;">O’Higgins</span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;">5.844</span></td>
<td style="width: 26.6116%; height: 22px; text-align: center;"><span style="font-size: 10pt;">238</span></td>
<td style="width: 13.3884%; height: 22px; text-align: center;"><span style="font-size: 10pt;">201</span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;">25</span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;">12</span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;">2.106</span></td>
<td style="width: 40.3027%; height: 22px; text-align: center;"><span style="font-size: 10pt;">69</span></td>
<td style="width: 2.79228%; height: 22px; text-align: center;"><span style="font-size: 10pt;">3.716</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Maule</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5.463</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">141</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">103</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">24</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">14</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.387</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">48</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">4.005</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Ñuble</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.384</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">21</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">20</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">368</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">32</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.970</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Biobío</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">6.595</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">197</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">152</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">27</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">18</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.043</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">50</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">4.523</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Araucanía</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">3.212</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">40</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">30</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">10</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">278</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">41</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">2.880</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Los Ríos</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">689</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">11</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">8</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">3</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">95</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">10</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">585</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Los Lagos</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.642</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">33</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">22</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">8</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">3</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">301</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">21</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.311</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Aysén</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">42</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">14</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">28</span></td>
</tr>
<tr style="height: 24px;">
<td style="width: 20%; text-align: center; height: 24px;"><span style="font-size: 10pt;">Magallanes</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.440</span></td>
<td style="width: 26.6116%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5</span></td>
<td style="width: 13.3884%; height: 24px; text-align: center;"><span style="font-size: 10pt;">5</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">0</span></td>
<td style="width: 20%; height: 24px; text-align: center;"><span style="font-size: 10pt;">132</span></td>
<td style="width: 40.3027%; height: 24px; text-align: center;"><span style="font-size: 10pt;">15</span></td>
<td style="width: 2.79228%; height: 24px; text-align: center;"><span style="font-size: 10pt;">1.290</span></td>
</tr>
<tr style="height: 72px;">
<td style="width: 20%; text-align: center; height: 72px;"><span style="font-size: 10pt;">Se desconoce región de origen</span></td>
<td style="width: 20%; text-align: center; height: 72px;"></td>
<td style="width: 26.6116%; text-align: center; height: 72px;"></td>
<td style="width: 13.3884%; text-align: center; height: 72px;"></td>
<td style="width: 20%; text-align: center; height: 72px;"></td>
<td style="width: 20%; text-align: center; height: 72px;"></td>
<td style="width: 20%; text-align: center; height: 72px;"><span style="font-size: 10pt;">18</span></td>
<td style="width: 40.3027%; text-align: center; height: 72px;"></td>
<td style="width: 2.79228%; height: 72px; text-align: center;"><span style="font-size: 10pt;">138</span></td>
</tr>
<tr style="height: 24px;" bgcolor="D7EEF9">
<td style="width: 20%; text-align: right; height: 22px;"><span style="font-size: 10pt;"><strong>Total</strong></span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>275.999</strong></span></td>
<td style="width: 26.6116%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>4.017</strong></span></td>
<td style="width: 13.3884%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>3.092</strong></span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>432</strong></span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>493</strong></span></td>
<td style="width: 20%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>34.270</strong></span></td>
<td style="width: 40.3027%; height: 22px; text-align: center;"><span style="font-size: 10pt;"><strong>5.575</strong></span></td>
<td style="width: 2.79228%; height: 22px; text-align: center;"><strong><span style="font-size: 10pt;">236.154</span></strong></td>
</tr>
</tbody>
</table>
<p><strong>*Corresponden a pesquisa de pacientes asintomáticos en contacto estrecho con casos, con PCR (+)<br />
** Casos que, teniendo un test de PCR positivo, no están ingresados aún en la plataforma de vigilancia epidemiológica (Epivigila)<br />
*** Para las estadísticas del DEIS, consultar el informe de Epidemiológico correspondiente.<br />
Informe corresponde al 29 de junio de 2020.</strong> El corte de la información se realizó a las 21:00 horas del 28 de junio.<br />
<strong>**** Para el cálculo de recuperados se substrae a los casos confirmados acumulados los casos activos confirmados y los fallecidos.</strong></p>
<!-- AddThis Advanced Settings above via filter on the_content --><!-- AddThis Advanced Settings below via filter on the_content --><!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons above via filter on the_content --><!-- AddThis Share Buttons below via filter on the_content --><div class="at-below-post-page addthis_tool" data-url="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/"></div><!-- AddThis Share Buttons generic via filter on the_content --> </div>
</div>
<div class="clearfix"></div>
</div>
</div>
<!-- Sidebar -->
<div id="sidebar">
<div class="buscar clearfix">
<form action="" method="get">
<label for="query">Busca en el sitio</label>
<input type="text" id="query" name="s" placeholder=" ">
<input type="submit" id="boton" value="Enviar">
</form>
</div>
<div class="widgets-sidebar">
<div class="widget"> <div class="textwidget"><table style="border-collapse: collapse; width: 100%;">
<tbody>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/"><img class="size-full wp-image-53577 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_informacion-ciudadana-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/informe-tecnico/"><img class="size-full wp-image-53397 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_informacion-tecnica-covid-19-.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/casos-confirmados-en-chile-covid-19/"><img class="size-full wp-image-53401 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_casos-confirmados-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/informe-epidemiologico-covid-19/"><img class="size-full wp-image-53297 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_informe-epidemiologico-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.who.int/emergencies/diseases/novel-coronavirus-2019/situation-reports/" target="_blank" rel="noopener noreferrer"><img class="size-full wp-image-53402 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_reporte-oms-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.who.int/ihr/publications/9789241580496/es/" target="_blank" rel="noopener noreferrer"><img class="size-full wp-image-53403 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_reglamento-sanitario-internacional-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/material-de-descarga/"><img class="size-full wp-image-53407 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_autocuidado-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.who.int/es/emergencies/diseases/novel-coronavirus-2019/advice-for-public/myth-busters" target="_blank" rel="noopener noreferrer"><img class="size-full wp-image-53404 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_mitos-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
<tr>
<td style="width: 100%;"><a href="https://www.minsal.cl/nuevo-coronavirus-2019-ncov/capacitacion-personal-de-salud/"><img class="size-full wp-image-53405 aligncenter" src="https://www.minsal.cl/wp-content/uploads/2020/04/banner-lateral_capacitacion-personal-de-salud-covid-19.png" alt="" width="320" height="100" /></a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="redes-lista">
<h5 class="titulo-seccion">Síguenos</h5>
<ul>
<li class="twitter">
<a class="clearfix" target=_blank href="https://twitter.com/DrEnriqueParis">
<span class="icono"></span>
<div class="texto">
<span class="red">Twitter</span>
<span class="usuario">Ministro @DrEnriqueParis</span>
</div>
</a>
</li>
<li class="twitter">
<a class="clearfix" target=_blank href="http://twitter.com/ministeriosalud">
<span class="icono"></span>
<div class="texto">
<span class="red">Twitter</span>
<span class="usuario">@ministeriosalud</span>
</div>
</a>
</li>
<li class="twitter">
<a class="clearfix" target=_blank href="https://twitter.com/pdazan">
<span class="icono"></span>
<div class="texto">
<span class="red">Twitter</span>
<span class="usuario">Subsecretaria @PDazaN</span>
</div>
</a>
</li>
<li class="twitter">
<a class="clearfix" target=_blank href="https://twitter.com/arturozunigaj">
<span class="icono"></span>
<div class="texto">
<span class="red">Twitter</span>
<span class="usuario">Subsecretario @arturozunigaj</span>
</div>
</a>
</li>
<li class="instagram">
<a class="clearfix" target=_blank href="https://www.instagram.com/ministeriosalud/">
<span class="icono"></span>
<div class="texto">
<span class="red">Instagram</span>
<span class="usuario">MinisterioSalud</span>
</div>
</a>
</li>
<li class="facebook">
<a class="clearfix" target=_blank href="https://www.facebook.com/Ministerio-de-Salud-Chile-273168169362020/?fref=ts">
<span class="icono"></span>
<div class="texto">
<span class="red">Facebook</span>
<span class="usuario">Ministerio de Salud Chile</span>
</div>
</a>
</li>
<li class="youtube">
<a class="clearfix" target=_blank href="http://www.youtube.com/user/ministeriosaludchile">
<span class="icono"></span>
<div class="texto">
<span class="red">YouTube</span>
<span class="usuario">MinisterioSaludChile</span>
</div>
</a>
</li>