Help
RSS
API
Feed
Maltego
Contact
Domain > multigrafica.com.mx
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-09
192.254.225.193
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 09 Jan 2025 05:21:56 GMTServer: ApacheLocation: https://multigrafica.com.mx/Content-Length: 236Content-Type: text/html; charsetiso-8859-1 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN>html>head>title>301 Moved Permanently/title>/head>body>h1>Moved Permanently/h1>p>The document has moved a hrefhttps://multigrafica.com.mx/>here/a>./p>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 09 Jan 2025 05:21:57 GMTServer: ApacheExpires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidate, post-check0, pre-check0Pragma: no-cacheSet-Cookie: PHPSESSIDa0fegso99af96f8480sfj714i1; path/Set-Cookie: misVisitasvisitante; expiresThu, 09-Jan-2025 05:21:57 GMT; Max-Age0; path/Upgrade: h2,h2cConnection: UpgradeVary: Accept-EncodingAccept-Ranges: noneTransfer-Encoding: chunkedContent-Type: text/html; charsetUTF-8 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>html xmlnshttp://www.w3.org/1999/xhtml>head>script async src//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js>/script>script> (adsbygoogle window.adsbygoogle || ).push({ google_ad_client: ca-pub-2293779679303007, enable_page_level_ads: true });/script>meta http-equivContent-Type contenttext/html; charsetUTF-8 />title>Multigrafica Agencia - Noticias Veracruz/title>link relshortcut icon href/favicon.ico /> script typetext/javascript srcscripts/jquery-1.7.1.min.js>/script> link relstylesheet hrefcss/prettyPhoto.css typetext/css mediascreen titleprettyPhoto main stylesheet charsetutf-8 /> script srcjs/jquery.prettyPhoto.js typetext/javascript charsetutf-8>/script> meta namedescription contentAgencia de fotografía en Veracruz /> script typetext/javascript>!--// original code by Stuart Langridge 2003-11// with additions to the code by other good people// http://www.kryogenix.org/code/browser/nicetitle/// thank you, sir// modified by Peter Janes 2003-03-25// http://peterjanes.ca/blog/archives/2003/03/25/nicetitles-for-ins-and-del// added in ins and del tags// modified by Dunstan Orchard 2003-11-18// http://1976design.com/blog/// added in accesskey information// tried ever-so-hard, but couldnt work out how to do what Ethan did// final genius touch by by Ethan Marcotte 2003-11-18// http://www.sidesh0w.com/// worked out how to delay showing the popups to make them more like the browsers own// set the namespacevar XHTMLNS http://www.w3.org/1999/xhtml;var CURRENT_NICE_TITLE;// browser sniffvar browser new Browser();// determine browser and version.function Browser() { var ua, s, i; this.isIE false; this.isNS false; this.version null; ua navigator.userAgent; s MSIE; if ((i ua.indexOf(s)) > 0) { this.isIE true; this.version parseFloat(ua.substr(i + s.length)); return; } s Netscape6/; if ((i ua.indexOf(s)) > 0) { this.isNS true; this.version parseFloat(ua.substr(i + s.length)); return; } // treat any other Gecko browser as NS 6.1. s Gecko; if ((i ua.indexOf(s)) > 0) { this.isNS true; this.version 6.1; return; } }// 2003-11-19 sidesh0w// set delay vars to emulate normal hover delayvar delay;var interval 0.60;// this function runs on window load// it runs through all the links on the page as starts listening for actionsfunction makeNiceTitles() { if (!document.createElement || !document.getElementsByTagName) return; if (!document.createElementNS) { document.createElementNS function(ns, elt) { return document.createElement(elt); } } // do regular links if (!document.links) { document.links document.getElementsByTagName(a); } for (var ti0; tidocument.links.length; ti++) { var lnk document.linksti; if (lnk.title) { lnk.setAttribute(nicetitle, lnk.title); //lnk.removeAttribute(title); addEvent(lnk, mouseover, showDelay); addEvent(lnk, mouseout, hideNiceTitle); addEvent(lnk, focus, showDelay); addEvent(lnk, blur, hideNiceTitle); } } // 2003-03-25 Peter Janes // do ins and del tags var tags new Array(2); tags0 document.getElementsByTagName(ins); tags1 document.getElementsByTagName(del); for (var tt0; tttags.length; tt++) { if (tagstt) { for (var ti0; titagstt.length; ti++) { var tag tagsttti; if (tag.dateTime) { var strDate tag.dateTime; // HTML/ISO8601 date: yyyy-mm-ddThh:mm:ssTZD (Z, -hh:mm, +hh:mm) var month strDate.substring(5,7); var day strDate.substring(8,10); if (month0 0) { month month1; } if (day0 0) { day day1; } var dtIns new Date(strDate.substring(0,4), month-1, day, strDate.substring(11,13), strDate.substring(14,16), strDate.substring(17,19)); tag.setAttribute(nicetitle, (tt 0 ? Added : Deleted) + on + dtIns.toString()); addEvent(tag, mouseover, showDelay); addEvent(tag, mouseout, hideNiceTitle); addEvent(tag, focus, showDelay); addEvent(tag, blur, hideNiceTitle); } } } } }// by Scott Andrew// add an eventlistener to browsers that can do it somehow.function addEvent(obj, evType, fn) { if (obj.addEventListener) { obj.addEventListener(evType, fn, true); return true; } else if (obj.attachEvent) { var r obj.attachEvent(on+evType, fn); return r; } else { return false; } }function findPosition(oLink) { if (oLink.offsetParent) { for (var posX 0, posY 0; oLink.offsetParent; oLink oLink.offsetParent) { posX + oLink.offsetLeft; posY + oLink.offsetTop; } return posX, posY; } else { return oLink.x, oLink.y; } }function getParent(el, pTagName) { if (el null) { return null; } // gecko bug, supposed to be uppercase else if (el.nodeType 1 && el.tagName.toLowerCase() pTagName.toLowerCase()) { return el; } else { return getParent(el.parentNode, pTagName); } }// 2003-11-19 sidesh0w// trailerpark wrapper functionfunction showDelay(e) { if (window.event && window.event.srcElement) { lnk window.event.srcElement } else if (e && e.target) { lnk e.target } if (!lnk) return; // lnk is a textnode or an elementnode thats not ins/del if (lnk.nodeType 3 || (lnk.nodeType 1 && lnk.tagName.toLowerCase() ! ins && lnk.tagName.toLowerCase() ! del)) { // ascend parents until we hit a link lnk getParent(lnk, a); } delay setTimeout(showNiceTitle(lnk), interval * 4000); }// build and show the nice titlesfunction showNiceTitle(link) { if (CURRENT_NICE_TITLE) hideNiceTitle(CURRENT_NICE_TITLE); if (!document.getElementsByTagName) return; nicetitle lnk.getAttribute(nicetitle); var d document.createElementNS(XHTMLNS, div); d.className nicetitle; tnt document.createTextNode(nicetitle); pat document.createElementNS(XHTMLNS, p); pat.className titletext; pat.appendChild(tnt); // 2003-11-18 Dunstan Orchard // added in accesskey info if (lnk.accessKey) { axs document.createTextNode( + lnk.destination + ); axsk document.createElementNS(XHTMLNS, span); axsk.className accesskey; axsk.appendChild(axs); pat.appendChild(axsk); } d.appendChild(pat); if (lnk.href) { tnd document.createTextNode(lnk.accessKey); pad document.createElementNS(XHTMLNS, p); pad.className destination; pad.appendChild(tnd); d.appendChild(pad); } STD_WIDTH 300; if (lnk.href) { h lnk.href.length; } else { h nicetitle.length; } if (nicetitle.length) { t nicetitle.length; } h_pixels h*6; t_pixels t*10; if (h_pixels > STD_WIDTH) { w h_pixels; } else if ((STD_WIDTH>t_pixels) && (t_pixels>h_pixels)) { w t_pixels; } else if ((STD_WIDTH>t_pixels) && (h_pixels>t_pixels)) { w h_pixels; } else { w STD_WIDTH; } d.style.width w + px; mpos findPosition(lnk); mx mpos0; my mpos1; d.style.left (mx+15) + px; d.style.top (my+35) + px; if (window.innerWidth && ((mx+w) > window.innerWidth)) { d.style.left (window.innerWidth - w - 25) + px; } if (document.body.scrollWidth && ((mx+w) > document.body.scrollWidth)) { d.style.left (document.body.scrollWidth - w - 25) + px; } document.getElementsByTagName(body)0.appendChild(d); CURRENT_NICE_TITLE d; }function hideNiceTitle(e) { // 2003-11-19 sidesh0w // clearTimeout if (delay) clearTimeout(delay); if (!document.getElementsByTagName) return; if (CURRENT_NICE_TITLE) { document.getElementsByTagName(body)0.removeChild(CURRENT_NICE_TITLE); CURRENT_NICE_TITLE null; } }window.onload function(e) {makeNiceTitles();}-->/script>script typetext/javascript srcjs/jquery.lightbox-0.5.js>/script> !-- Ativando o jQuery lightBox plugin --> script typetext/javascript> $(function() { $(#gallery2 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery3 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery4 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery5 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery6 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery7 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery8 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery9 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery10 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery11 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery12 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery13 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery14 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery15 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery16 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery17 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery18 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery19 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery20 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery21 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery22 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery23 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery24 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery25 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery26 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#gallery27 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#galleryx1 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#galleryx2 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#galleryx3 a).lightBox(); }); /script> script typetext/javascript> $(function() { $(#galleryx4 a).lightBox(); }); /script> style typetext/css>body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; background-color: #1A1A1A;}#a { font-family: Verdana, Geneva, sans-serif;}#a { color: #FFF;}b { font-family: Comic Sans MS, cursive;}#bv { font-family: Swis721 BT; size: 8px; color: #FFF;}.vv { font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #FFF;}.vv2 { font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #FF6600;}.table { font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #FFF;}.table2 { font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #FFF;}.table3 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #FFF;}.table4 { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #FF6600;} #gallery { width: 979px; } #gallery ul { list-style: none; } #gallery ul li { display: inline; } #gallery ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery ul a:hover { color: #fff; }#gallery2 { width: 102px; } #gallery2 ul { list-style: none; } #gallery2 ul li { display: inline; } #gallery2 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery2 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery2 ul a:hover { color: #fff; } #gallery3 { width: 102px; } #gallery3 ul { list-style: none; } #gallery3 ul li { display: inline; } #gallery3 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery3 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery3 ul a:hover { color: #fff; } #gallery4 { width: 102px; } #gallery4 ul { list-style: none; } #gallery4 ul li { display: inline; } #gallery4 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery4 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery4 ul a:hover { color: #fff; } #gallery5 { width: 102px; } #gallery5 ul { list-style: none; } #gallery5 ul li { display: inline; } #gallery5 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery5 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery5 ul a:hover { color: #fff; } #gallery6 { width: 102px; } #gallery6 ul { list-style: none; } #gallery6 ul li { display: inline; } #gallery6 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery6 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery6 ul a:hover { color: #fff; }#gallery7 { width: 102px; } #gallery7 ul { list-style: none; } #gallery7 ul li { display: inline; } #gallery7 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery7 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery7 ul a:hover { color: #fff; }#gallery8 { width: 102px; } #gallery8 ul { list-style: none; } #gallery8 ul li { display: inline; } #gallery8 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery8 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery8 ul a:hover { color: #fff; } #gallery9 { width: 102px; } #gallery9 ul { list-style: none; } #gallery9 ul li { display: inline; } #gallery9 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery9 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery9 ul a:hover { color: #fff; } #gallery10 { width: 102px; } #gallery10 ul { list-style: none; } #gallery10 ul li { display: inline; } #gallery10 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery10 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery10 ul a:hover { color: #fff; } #gallery11 { width: 102px; } #gallery11 ul { list-style: none; } #gallery11 ul li { display: inline; } #gallery11 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery11 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery11 ul a:hover { color: #fff; } #gallery12 { width: 102px; } #gallery12 ul { list-style: none; } #gallery12 ul li { display: inline; } #gallery12 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery12 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery12 ul a:hover { color: #fff; } #gallery13 { width: 102px; } #gallery13 ul { list-style: none; } #gallery13 ul li { display: inline; } #gallery13 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery13 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery13 ul a:hover { color: #fff; } #gallery14 { width: 102px; } #gallery14 ul { list-style: none; } #gallery14 ul li { display: inline; } #gallery14 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery14 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery14 ul a:hover { color: #fff; } #gallery15 { width: 102px; } #gallery15 ul { list-style: none; } #gallery15 ul li { display: inline; } #gallery15 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery15 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery15 ul a:hover { color: #fff; } #gallery16 { width: 102px; } #gallery16 ul { list-style: none; } #gallery16 ul li { display: inline; } #gallery16 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery16 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery16 ul a:hover { color: #fff; } #gallery17 { width: 102px; } #gallery17 ul { list-style: none; } #gallery17 ul li { display: inline; } #gallery17 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery17 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery17 ul a:hover { color: #fff; } #gallery18 { width: 102px; } #gallery18 ul { list-style: none; } #gallery18 ul li { display: inline; } #gallery18 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery18 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery18 ul a:hover { color: #fff; }#gallery19 { width: 102px; } #gallery19 ul { list-style: none; } #gallery19 ul li { display: inline; } #gallery19 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery19 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery19 ul a:hover { color: #fff; }#gallery20 { width: 102px; } #gallery20 ul { list-style: none; } #gallery20 ul li { display: inline; } #gallery20 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery20 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery20 ul a:hover { color: #fff; }#gallery21 { width: 102px; } #gallery21 ul { list-style: none; } #gallery21 ul li { display: inline; } #gallery21 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery21 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery21 ul a:hover { color: #fff; }#gallery22 { width: 102px; } #gallery22 ul { list-style: none; } #gallery22 ul li { display: inline; } #gallery22 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery22 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery22 ul a:hover { color: #fff; }#gallery23 { width: 102px; } #gallery23 ul { list-style: none; } #gallery23 ul li { display: inline; } #gallery23 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery23 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery23 ul a:hover { color: #fff; }#gallery24 { width: 140px; } #gallery24 ul { list-style: none; } #gallery24 ul li { display: inline; } #gallery24 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery24 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery24 ul a:hover { color: #fff; }#gallery25 { width: 140px; } #gallery25 ul { list-style: none; } #gallery25 ul li { display: inline; } #gallery25 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery25 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery25 ul a:hover { color: #fff; }#gallery26 { width: 271px; } #gallery26 ul { list-style: none; } #gallery26 ul li { display: inline; } #gallery26 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery26 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery26 ul a:hover { color: #fff; } #gallery27 { width: 271px; } #gallery27 ul { list-style: none; } #gallery27 ul li { display: inline; } #gallery27 ul img { border: 5px solid #3e3e3e; border-width: 5px 5px 20px; } #gallery27 ul a:hover img { border: 5px solid #fff; border-width: 5px 5px 20px; color: #fff; } #gallery27 ul a:hover { color: #fff; }!--div.nicetitle { background-color: #FFF; color: #000; font: bold 13px Trebuchet MS, Verdana, Arial, sans-serif; left: 0; padding: 4px; position: absolute; top: 0; width: 25em; z-index: 20; -moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; -moz-border-radius-topleft: 0; -moz-border-radius-topright: 10px; -moz-opacity: .87; }div.nicetitle p { margin: 0; padding: 0 3px; -moz-opacity: 1;}div.nicetitle p.destination { font-size: 9px; padding-top: 3px; text-align: left; -moz-opacity: 1;}div.nicetitle p span.accesskey { color:#003366;}-->.pp_social .facebook{display:none;}.pp_social .twitter{display:none;}/style> link relstylesheet hrefthemes/default/default.css typetext/css mediascreen /> link relstylesheet hrefnivo-slider.css typetext/css mediascreen /> link relstylesheet hrefstyle2.css typetext/css mediascreen /> style typetext/css>a:link { color: #FFF;}a:visited { color: #FFF;}/style>/head>body>table width1011 border0 aligncenter>tr> td> div idnotasuperior> iframe frameborder0 srccarrpub1.php width1000px height120px;>/iframe> /div> /td> /tr> tr>td stylepadding:3px aligncenter> div styleposition: relative; width: 1px; height: 1px; float:left; left: 1015px;>div stylemax-width: 320px> table>tr>td>a hrefhttps://www.facebook.com/profile.php?id61560330831865 target_blank>img srcads/1733347228.jpeg stylemax-width: 320px>/a>/td>/tr> tr>td>/td>/tr> /table> /div> /div> /td>/tr> tr> td width1005> div stylewidth:100%; height:100%;> div stylefloat:left; width:476px; height:95px; margin:37px 15px 0 >img srcimagenes/logo23.png width475 height95 />/div> div stylewidth:353px; height:73px; float:right; margin-top:37px> table width345 border0> tr> td width35> /td> td width156> /td> td classvv colspan2> a hrefcontacto.php>input typeimage srcimagenes/contact.png width44 height8 />/a>/td> td colspan2>a hrefloggeo.php>input typeimage srcimagenes/inics.png width63 height9 />/a>/td> /tr> tr> td> /td> td>table width147 border0> tr> td classvv width120 alignright stylefont-size:14px>Dir. Alberto Morales/td> /tr> tr> td classvv2 alignright stylefont-size: 16px !important;> script> !-- COMIENZO Stamp new Date(); year Stamp.getYear(); dia new Array(Domingo, Lunes, Martes, Miércoles, Jueves,Viernes, Sabado) mes new Array(Enero,Febrero,Marzo,Abril,Mayo,Junio,Julio,Agosto,Septiembre,Octubre,Noviembre,Diciembre); if (year 2000) year 1900 + year; document.write(+Stamp.getDate()+ de + mes(Stamp.getMonth()) + de + year + ); // FIN --> /script> 23:21 /td> /tr> /table>/td> td>/td> td>/td> td width32>a hrefhttps://www.facebook.com/agenciamultigrafica>img srcimagenes/face.png width32 height32 border0 />/a>/td> td width32>a hrefhttps://twitter.com/amultigrafica>img srcimagenes/twitter.png width32 height32 border0 />/a>/td> /tr> /table>/div>div stylewidth:100%; float:right; margin-top:11px; background: url(imagenes/barra.png);> table width1001 border0> tr> td width9> /td> td>!-- Begin Vista-Buttons.com -->link hrefmulti-files/styles_2g363.css typetext/css relstylesheet/>ul idvbUL_tg363 classvbUL2g363 stylevisibility:hidden;>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec3 titlemirador>mirador/a>/li>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec8 titlexalapa>xalapa/a>/li>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec4 titlepersonajes>personajes/a>/li>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec6 titletunel del tiempo>tunel del tiempo/a>/li>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec7 titleandanzas>andanzas/a>/li>li>a hrefhttp://www.multigrafica.com.mx/galeria.php?sec5 titleplaza legislativa>plaza legislativa/a>/li>/ul>ul idvbUL_wg363 classvbUL2g363 stylevisibility:hidden;>li>a hrefhttp://www.multigrafica.com.mx/ColumnaVertebral.php titlecolumna vertebral>columna vertebral/a>/li>li>a hrefhttp://www.multigrafica.com.mx/CineSinFin.php titlecine sin fin>cine sin fin/a>/li>/ul>script typetext/javascript srcmulti-files/sc2g363.js>/script>style> .newmenu{ font-family: Arial; font-size: 15px; width: 83px; height: 30px; display: table-cell; vertical-align: middle; text-align: center; color: #FFFFFF; } .newmenu:hover{ color: #FFFFFF; }/style>table idvista-buttons.com:id2g363 width0 cellpadding0 cellspacing0 border0>tr> td stylepadding-right:0px title portada> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu onMouseOverxpe(2g363o); onMouseOutxpe(2g363n); onMouseDownxpe(2g363c); hrefindex.php> !--img idxpi_2g363 srcmulti-files/bt2g363_0.gif namevb2g363 width85 height30 border0 altportada/>--> portada /a> /td> td stylepadding-right:0px title fotografia> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefhttp://www.multigrafica.com.mx/galeria.php?sec1 onMouseOverxpe(tg363o);xpshow(tg363,0,this);xpsmover(this); onMouseOutxpsmout(this); onMouseDownxpe(tg363c);> !--img idxpi_tg363 srcmulti-files/bttg363_0.gif namevbtg363 width94 height30 border0 altfotografia/>--> fotografia /a> /td> td stylepadding-right:0px title carticatura> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefhttp://www.multigrafica.com.mx/galeria.php?sec10 onMouseOverxpe(pg363o); onMouseOutxpe(pg363n); onMouseDownxpe(pg363c);> !--img idxpi_pg363 srcmulti-files/btpg363_0.gif namevbpg363 width106 height30 border0 altcaricatura/>--> caricatura /a> /td> td stylepadding-right:0px title noticias> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefhttp://www.multigrafica.com.mx/noticias.php onMouseOverxpe(og363o); onMouseOutxpe(og363n); onMouseDownxpe(og363c);> !--img idxpi_og363 srcmulti-files/btog363_0.gif namevbog363 width95 height30 border0 altnoticias/>--> noticias /a> /td> td stylepadding-right:0px title columnas> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu href# onMouseOverxpe(wg363o);xpshow(wg363,0,this);xpsmover(this); onMouseOutxpsmout(this); onMouseDownxpe(wg363c);> !--img idxpi_wg363 srcmulti-files/btwg363_0.gif namevbwg363 width102 height30 border0 altcolumnas/>--> columnas /a> /td> td stylepadding-right:0px title revista> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefrevistanueva.php onMouseOverxpe(4g363o); onMouseOutxpe(4g363n); onMouseDownxpe(4g363c);> !--img idxpi_4g363 srcmulti-files/bt4g363_0.gif namevb4g363 width83 height30 border0 altrevista/>--> revista /a> /td> td stylepadding-right:0px title medios> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefligas.php onMouseOverxpe(zg363o); onMouseOutxpe(zg363n); onMouseDownxpe(zg363c);> !--img idxpi_zg363 srcmulti-files/btzg363_0.gif namevbzg363 width83 height30 border0 altmedios/>--> medios /a> /td> td stylepadding-right:0px title videoteca> a stylecolor:#FFFFFF; text-decoration: none; classnewmenu hrefvideoteca.php onMouseOverxpe(zg363o); onMouseOutxpe(zg363n); onMouseDownxpe(zg363c);> videoteca /a> /td>/tr>/table>/td> td width310> script> (function() { var cx 014128263917892259828:rfwuklk8l6o; var gcse document.createElement(script); gcse.type text/javascript; gcse.async true; gcse.src https://cse.google.com/cse.js?cx + cx; var s document.getElementsByTagName(script)0; s.parentNode.insertBefore(gcse, s); })(); /script> gcse:searchbox-only>/gcse:searchbox-only> /td> /td> /tr>/table>/div> /div>div classtx_gris stylefloat:left; width:700px; height:24px; padding:4px; > div classb13 stylefloat:left; width:130px; height:auto;font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:14px;>Ultimas noticias: /div> div style float:left; width:480px; height:22px;>iframe srcultimas.php height18px width450px frameborder0 scrollingno>/iframe>/div>/div> div stylewidth:990px; height:100%;> div stylewidth:993px; height:540px; float:left; margin:13px 0px 0px 15px;> div classslider-wrapper theme-default> div styleheight: 500px; background-color: black; idslider classnivoSlider> a hrefgaleria/1/170246/fotografia/frente-frao>img srcfotos/2025-01-08/fotografia/170246_d1.jpg alt titleLluvias ligeras y lluvias dispersas sobre la mayor parte del estadoCONAGUA / Cortesía />/a> a hrefgaleria/1/170247/fotografia/frente-frao>img srcfotos/2025-01-08/fotografia/170247_d1.jpg titleLluvias ligeras y lluvias dispersas sobre la mayor parte del estadoCONAGUA / Cortesía /> /a> a hrefgaleria/1/170249/fotografia/convenio>img srcfotos/2025-01-08/fotografia/170249_d1.jpg alt titleINE y OPLE Veracruz firman convenio de colaboración con la Secretaría de Seguridad Pública del Gobierno del Estado de VeracruzCortesía Cortesía /> /a> a hrefgaleria/1/170248/fotografia/ganaderaa>img srcfotos/2025-01-08/fotografia/170248_d1.jpg titleEl objetivo es convertir a Veracruz en un referente a nivel nacional.Comunicación Social / Gobierno del Estado alt />/a> a hrefgaleria/1/170245/fotografia/ola-de-violencia>img srcfotos/2025-01-08/fotografia/170245_d1.jpg alt titleEste suceso se suma a la ola de violencia que ha vivido la zona centro.archivo multigráfica />/a> a hrefgaleria/1/170244/fotografia/china-en-mi-imaginacian>img srcfotos/2025-01-08/fotografia/170244_d1.jpg titleSe exhibirán 103 trabajos realizadas por niñas y niños mexicanos en los que reflejan la esencia de la arquitectura ChinaCortesía Cortesía />/a> a hrefgaleria/1/170242/fotografia/frente-frao>img srcfotos/2025-01-08/fotografia/170242_d1.jpg alt titleContinuarán las bajas temperaturas y condiciones de humedadComunicación Social/ Ayuntamiento de Xalapa /> /a> a hrefgaleria/1/170241/fotografia/frente-frao>img srcfotos/2025-01-08/fotografia/170241_d1.jpg titleContinuarán las bajas temperaturas y condiciones de humedadComunicación Social/ Ayuntamiento de Xalapa alt />/a> a hrefgaleria/1/170240/fotografia/frente-frao>img srcfotos/2025-01-08/fotografia/170240_d1.jpg alt titleFase de Vigilancia.Prensa /Protección Civil />/a> a hrefgaleria/1/170238/fotografia/conmemoracian>img srcfotos/2025-01-07/fotografia/170238_d1.jpg titleConmemoración del aniversario 118 de los Mártires de Río Blanco.Cortesía Cortesía />/a> a hrefgaleria/1/170239/fotografia/despido>img srcfotos/2025-01-08/fotografia/170239_d1.jpg alt titleMencionan desconocer las razones por las cuales la SEV decidió concluir la relación laboralCortesía Cortesía />/a> a hrefgaleria/1/170237/fotografia/frente-frao>img srcfotos/2025-01-07/fotografia/170237_d1.jpg titleFase de SeguimientoPrensa /Protección Civil />/a> a hrefgaleria/1/170236/fotografia/ine>img srcfotos/2025-01-07/fotografia/170236_d1.jpg alt titleRequisitos para tramitar el INECortesía Cortesía /> /a> a hrefgaleria////>img src alt title />/a> a hrefgaleria////>img src title />/a> /div> div idhtmlcaption styleposition: relative;class nivo-html-caption> strong>This/strong> is an example of a em>HTML/em> caption with a href#>a link/a>. /div> /div> /div> /div> /div> style typetext/css> #tres{ width: 985px; float:left; background-color:#292929; margin:12px 0px 10px 13px; } .mtres{ width: 300px; margin:30px 0px 20px 21px; float: left; font-family: Arial, Helvetica, sans-serif; } .mtres img{ width: 300px; ,ax-height: 200px; } .mtres h1{ margin: 0; font-size: 17px; } .mtres h1,p{ color: #FFFFFF; margin-top: 8px; } .mtres p>span{ color: #E6983A; } .mtres p{ font-size: 13px; font-weight: 500; } /style> div idtres> div classmtres> a hrefnota/57785/asesinan-a-director-de-gobernacian-de-mendoza>img srcfotos/2025-01-08/fotografia/170245_3.jpg> h1>strong>ASESINAN A DIRECTOR DE GOBERNACIÓN DE MENDOZAstrong>/h1> p> span>Xalapa 08 Enero 2025 /span >Este suceso se suma a la ola de violencia que ha vivido la zona centro. /p> /a> /div> div classmtres> a hrefnota/57790/ine-y-ople-veracruz-firman-convenio-de-colaboracian-con-la-secretaraa-de-seguridad-pablica-del-gobierno-del-estado-de-veracruz>img srcfotos/2025-01-08/fotografia/170249_3.jpg> h1>strong>INE Y OPLE VERACRUZ FIRMAN CONVENIO DE COLABORACIÓN CON LA SECRETARÍA DE SEGURIDAD PÚBLICA DEL GOBIERNO DEL ESTADO DE VERACRUZstrong>/h1> p> span>Xalapa 08 Enero 2025 /span >Se realizará el voto en prisión preventiva en 17 centros de reinserción social del Estado /p> /a> /div> div classmtres> a hrefnota/57789/rocao-nahle-impulsa-certificacian-ganadera-compromiso-con-la-sanidad-y-la-productividad>img srcfotos/2025-01-08/fotografia/170248_3.jpg> h1>strong>ROCÍO NAHLE IMPULSA CERTIFICACIÓN GANADERA, COMPROMISO CON LA SANIDAD Y LA PRODUCTIVIDADstrong>/h1> p> span>Xalapa 08 Enero 2025 /span >Próximamente iniciará la campaña contra la tuberculosis y brucelosis. /p> /a> /div> /div> div stylewidth:100%; height:100%; float:left; margin:10px 0px 0px 0px;>iframe frameborder0 srccarrpub2.php width1000px height120px;>/iframe>/div> div stylewidth:100%; height:100%; float:left; margin:10px 0px 0px 0px;> div stylewidth:292px; height:730px; float:left; margin-left:15px; background: url(imagenes/fondo4.png); background-position:top; background-repeat:no-repeat; background-color:#292929> div stylewidth:294px; height:50px; float:left;>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57784/invita-el-inbal-a-la-inauguracian-de-la-11a-exposician-del-concurso-de-dibujo-y-pintura-infantil-china-en-mi-imaginacian >strong>INVITA EL INBAL A LA INAUGURACIÓN DE LA 11° EXPOSICIÓN DEL CONCURSO DE DIBUJO Y PINTURA INFANTIL CHINA EN MI IMAGINACIÓNstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-08/fotografia/170244_4.jpg width88 height55 />/td> td classtable2 width189> Se exhibirán 103 trabajos realizadas por niñas y niños mexicanos en los que reflejan la esencia de la arquitectura China p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57783/-localizan-sin-vida-a-doctor-de-ciencias-de-la-uv >strong> LOCALIZAN SIN VIDA A DOCTOR DE CIENCIAS DE LA UVstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-08/fotografia/170243_4.jpg width88 height55 />/td> td classtable2 width189>La universidad y la vicerretoría donde daba clases, lamentaron su muerte p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57782/exhorta-pc-municipal-a-extremar-precauciones-por-frente-frao >strong>EXHORTA PC MUNICIPAL A EXTREMAR PRECAUCIONES POR FRENTE FRÍOstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-08/fotografia/170241_4.jpg width88 height55 />/td> td classtable2 width189>Continuarán las bajas temperaturas y condiciones de humedad p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57781/-alerta-gris-del-siat-ver-en-fase-de-vigilancia >strong> ALERTA GRIS DEL SIAT-VER EN FASE DE VIGILANCIAstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-08/fotografia/170240_4.jpg width88 height55 />/td> td classtable2 width189>Fase de Vigilancia. p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57780/exigen-trabajadores-de-la-sev-respeto-a-sus-derechos-laborales >strong>EXIGEN TRABAJADORES DE LA SEV RESPETO A SUS DERECHOS LABORALESstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-08/fotografia/170239_4.jpg width88 height55 />/td> td classtable2 width189>Mencionan desconocer las razones por las cuales la SEV decidió concluir la relación laboral p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> div stylewidth:292px; height:100px; float:left;> table width293 height97 border0> tr> td classtable height21 colspan2> a hrefnota/57779/conmemora-lxvii-legislatura-a-los-martires-de-rao-blanco >strong>CONMEMORA LXVII LEGISLATURA A LOS MÁRTIRES DE RÍO BLANCOstrong>/a>/td> /tr> tr> td width94 height70>img srcfotos/2025-01-07/fotografia/170238_4.jpg width88 height55 />/td> td classtable2 width189>Conmemoración del aniversario 118 de los Mártires de Río Blanco. p> /p>/td> /tr> /table> /div> div stylewidth:292px; height:5px; float:left; margin-top:5px; background: url(imagenes/barr.png);>/div> /div> div stylewidth:12px; height:700px; float:left;>img srcimagenes/linea.png width1 height130 />/div> div stylewidth:680px; /*height:500px;*/ float:left; margin:0px 0px 0px 0px; background-color:#292929; background-image:url(imagenes/videoback.png); background-position:top left; background-repeat:no-repeat;> div idtra stylewidth: 100%; margin: auto; margin-top: 50px;> iframe srchttps://www.facebook.com/plugins/video.php?height315&hrefhttps%3A%2F%2Fwww.facebook.com%2Fagenciamultigrafica%2Fvideos%2F1113808273631451%2F&show_textfalse&width560&t0 width560 height315 styleborder:none;overflow:hidden scrollingno frameborder0 allowfullscreentrue allowautoplay; clipboard-write; encrypted-media; picture-in-picture; web-share allowFullScreentrue>/iframe> /div> div classtable3 style width:670px; float:left; margin-top:10px; margin-left:5px; font-size:17px;>ACERCA ASESINATO DE DIPUTADO/div> script typetext/javascript> $(#tra>iframe).css(width,100%); // /script> /div> div stylewidth:680px; float:left; margin:0px 0px 0px 0px;> table width680 cellpadding0 cellspacing0> tr> td colspan2 height7>/td> /tr> !--publicidad horizontal 1 tr> td colspan2 aligncenter> a hrefhttps://multigrafica.com.mx/>img width670px height120px srcads/1705957373.jpeg border0 />/a> /td> /tr>--> tr> td colspan2 height7>/td> /tr> tr> td aligncenter>center> a hrefhttps://multigrafica.com.mx/>img srcads/1705957419.jpeg width350 border0/>/a> /center> /td> td> /td> /tr> /table> /div> /div> div idtres> div classmtres> a hrefnota/57778/frente-frao-lluvia-norte>img srcfotos/2025-01-07/fotografia/170237_d1.jpg> h1>strong>FRENTE FRÍO-LLUVIA-NORTEstrong>/h1> p> span>Xalapa 07 Enero 2025 /span >Fase de Seguimiento /p> /a> /div> div classmtres> a hrefnota/57777/esto-necesitas-para-renovar-tu-ine>img srcfotos/2025-01-07/fotografia/170236_d1.jpg> h1>strong>ESTO NECESITAS PARA RENOVAR TU INEstrong>/h1> p> span>Xalapa 07 Enero 2025 /span >Requisitos para tramitar la credencial para votar /p> /a> /div> div classmtres> a hrefnota/57776/esto-necesitas-para-renovar-tu-ine>img src_d1.jpg> h1>strong>ESTO NECESITAS PARA RENOVAR TU INEstrong>/h1> p> span>Xalapa 07 Enero 2025 /span >Requisitos para tramitar la credencial para votar. /p> /a> /div> /div> div stylewidth:985px; height:356px; float:left; margin:12px 0px 0px 13px; background: url(imagenes/fondo8.png);> div idgallery stylewidth:979px; height:275px; float:left; margin-top:80px; margin-left:9px;> table width109 height258 border0 cellspacing3 classgallery clearfix> tr> td width101>ul classgallery clearfix> li>a hreffotos/2025-01-08/fotografia/170247_101.jpg title Lluvias ligeras y lluvias dispersas sobre la mayor parte del estado - CONAGUA / Cortesía relprettyPhotogallery1> img srcfotos/2025-01-08/fotografia/170247_2.jpg width102 height82 />/a>/li> li>a hreffotos/2025-01-08/fotografia/170246_101.jpg title1 Lluvias ligeras y lluvias dispersas sobre la mayor parte del estado - CONAGUA / Cortesía relprettyPhotogallery1> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2025-01-06/fotografia/170225_101.jpg title2 Elementos de la Guardia Nacional entregaron juguetes en el parque Juárez de la ciudad de Xalapa, mostraron sus equipos tácticos a la población en general que utilizan en la vida diaria, además de amenizar el evento con música de banda. - Rigoberto Suárez relprettyPhotogallery2> img srcfotos/2025-01-06/fotografia/170225_2.jpg width102 height82 />/a>/li> li>a hreffotos/2025-01-06/fotografia/170224_101.jpg title3 Elementos de la Guardia Nacional entregaron juguetes en el parque Juárez de la ciudad de Xalapa, mostraron sus equipos tácticos a la población en general que utilizan en la vida diaria, además de amenizar el evento con música de banda. - Rigoberto Suárez relprettyPhotogallery2> /a>/li> li>a hreffotos/2025-01-06/fotografia/170223_101.jpg title4 Elementos de la Guardia Nacional entregaron juguetes en el parque Juárez de la ciudad de Xalapa, mostraron sus equipos tácticos a la población en general que utilizan en la vida diaria, además de amenizar el evento con música de banda. - Rigoberto Suárez relprettyPhotogallery2> /a>/li> li>a hreffotos/2025-01-06/fotografia/170222_101.jpg title5 Elementos de la Guardia Nacional entregaron juguetes en el parque Juárez de la ciudad de Xalapa, mostraron sus equipos tácticos a la población en general que utilizan en la vida diaria, además de amenizar el evento con música de banda. - Rigoberto Suárez relprettyPhotogallery2> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2025-01-04/fotografia/170216_101.jpg title6 SEMAR decomiso mas de media tonelada de marihuana en Veracruz - Cortesía Cortesía relprettyPhotogallery3> img srcfotos/2025-01-04/fotografia/170216_2.jpg width102 height82 />/a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2025-01-02/fotografia/170202_101.jpg title7 Con menos afluencia que otros años comenzó el cobro de predial en la ciudad de Xalapa, se espera que confirme las actividades regresen a la normalidad el público en general acude hacer su pago. - Rigoberto Suárez relprettyPhotogallery6> img srcfotos/2025-01-02/fotografia/170202_2.jpg width102 height82 />/a>/li> li>a hreffotos/2025-01-02/fotografia/170201_101.jpg title8 Con menos afluencia que otros años comenzó el cobro de predial en la ciudad de Xalapa, se espera que confirme las actividades regresen a la normalidad el público en general acude hacer su pago. - Rigoberto Suárez relprettyPhotogallery6> /a>/li> li>a hreffotos/2025-01-02/fotografia/170200_101.jpg title9 Con menos afluencia que otros años comenzó el cobro de predial en la ciudad de Xalapa, se espera que confirme las actividades regresen a la normalidad el público en general acude hacer su pago. - Rigoberto Suárez relprettyPhotogallery6> /a>/li> ul> /td> tr> tr> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-31/fotografia/170192_101.jpg title10 En varios puntos de la capital del estado se pueden encontrar los tradicionales viejitos que se queman con pirotecnia en la media noche, la cual también se puede conseguir en el centro de Xalapa. - Rigoberto Suárez relprettyPhotogallery7> img srcfotos/2024-12-31/fotografia/170192_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-31/fotografia/170191_101.jpg title11 En varios puntos de la capital del estado se pueden encontrar los tradicionales viejitos que se queman con pirotecnia en la media noche, la cual también se puede conseguir en el centro de Xalapa. - Rigoberto Suárez relprettyPhotogallery7> /a>/li> li>a hreffotos/2024-12-31/fotografia/170190_101.jpg title12 En varios puntos de la capital del estado se pueden encontrar los tradicionales viejitos que se queman con pirotecnia en la media noche, la cual también se puede conseguir en el centro de Xalapa. - Rigoberto Suárez relprettyPhotogallery7> /a>/li> li>a hreffotos/2024-12-31/fotografia/170189_101.jpg title13 En varios puntos de la capital del estado se pueden encontrar los tradicionales viejitos que se queman con pirotecnia en la media noche, la cual también se puede conseguir en el centro de Xalapa. - Rigoberto Suárez relprettyPhotogallery7> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-31/fotografia/170188_101.jpg title14 Jóvenes, adultos pero sobre todos niños de la ciudad de Xalapa bailan el tradicional Viejo por las calles de la capital, con botes, garrafones y vestidos de mujeres alegran las calles en este último día del año 2024. - Rigoberto Suárez relprettyPhotogallery8> img srcfotos/2024-12-31/fotografia/170188_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-31/fotografia/170187_101.jpg title15 Jóvenes, adultos pero sobre todos niños de la ciudad de Xalapa bailan el tradicional Viejo por las calles de la capital, con botes, garrafones y vestidos de mujeres alegran las calles en este último día del año 2024. - Rigoberto Suárez relprettyPhotogallery8> /a>/li> li>a hreffotos/2024-12-31/fotografia/170186_101.jpg title16 Jóvenes, adultos pero sobre todos niños de la ciudad de Xalapa bailan el tradicional Viejo por las calles de la capital, con botes, garrafones y vestidos de mujeres alegran las calles en este último día del año 2024. - Rigoberto Suárez relprettyPhotogallery8> /a>/li> li>a hreffotos/2024-12-31/fotografia/170185_101.jpg title17 Jóvenes, adultos pero sobre todos niños de la ciudad de Xalapa bailan el tradicional Viejo por las calles de la capital, con botes, garrafones y vestidos de mujeres alegran las calles en este último día del año 2024. - Rigoberto Suárez relprettyPhotogallery8> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-30/fotografia/170173_101.jpg title18 Participaron 23 grupos representativos y 40 artesanos. - Cortesía Cortesía relprettyPhotogallery9> img srcfotos/2024-12-30/fotografia/170173_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-30/fotografia/170172_101.jpg title19 Participaron 23 grupos representativos y 40 artesanos. - Cortesía Cortesía relprettyPhotogallery9> /a>/li> li>a hreffotos/2024-12-30/fotografia/170171_101.jpg title20 Participaron 23 grupos representativos y 40 artesanos. - Cortesía Cortesía relprettyPhotogallery9> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-28/fotografia/170166_101.jpg title21 Boleros del parque Juárez en la ciudad de Xalapa colocan una cartera clavada a el piso como parte de la típica broma del Día de los Inocentes; pocas personas cayeron en el engaño. - Rigoberto Suárez relprettyPhotogallery10> img srcfotos/2024-12-28/fotografia/170166_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-28/fotografia/170165_101.jpg title22 Boleros del parque Juárez en la ciudad de Xalapa colocan una cartera clavada a el piso como parte de la típica broma del Día de los Inocentes; pocas personas cayeron en el engaño. - Rigoberto Suárez relprettyPhotogallery10> /a>/li> li>a hreffotos/2024-12-28/fotografia/170164_101.jpg title23 Boleros del parque Juárez en la ciudad de Xalapa colocan una cartera clavada a el piso como parte de la típica broma del Día de los Inocentes; pocas personas cayeron en el engaño. - Rigoberto Suárez relprettyPhotogallery10> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-24/fotografia/170145_101.jpg title24 Se llevó a cabo la tradición de las posadas en el Municipio de Miahuatlán, Ver.Con un rosario previo en cada nacimiento las personas comienzan su recorrido por el municipio y van recibiendo sus bueñoles, `ponche, atole y mas. - Rigoberto Suárez relprettyPhotogallery11> img srcfotos/2024-12-24/fotografia/170145_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-24/fotografia/170144_101.jpg title25 Se llevó a cabo la tradición de las posadas en el Municipio de Miahuatlán, Ver.Con un rosario previo en cada nacimiento las personas comienzan su recorrido por el municipio y van recibiendo sus bueñoles, `ponche, atole y mas. - Rigoberto Suárez relprettyPhotogallery11> /a>/li> li>a hreffotos/2024-12-24/fotografia/170143_101.jpg title26 Se llevó a cabo la tradición de las posadas en el Municipio de Miahuatlán, Ver.Con un rosario previo en cada nacimiento las personas comienzan su recorrido por el municipio y van recibiendo sus bueñoles, `ponche, atole y mas. - Rigoberto Suárez relprettyPhotogallery11> /a>/li> li>a hreffotos/2024-12-24/fotografia/170142_101.jpg title27 Se llevó a cabo la tradición de las posadas en el Municipio de Miahuatlán, Ver.Con un rosario previo en cada nacimiento las personas comienzan su recorrido por el municipio y van recibiendo sus bueñoles, `ponche, atole y mas. - Rigoberto Suárez relprettyPhotogallery11> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-22/fotografia/170134_101.jpg title28 Este evento es parte de la agenda de actividades que el Gobierno estatal ha preparado para celebrar el fin de año en el puerto de Veracruz con una gran comparsa Despide al Año Viejo. - Comunicación Social / Gobierno del Estado relprettyPhotogallery12> img srcfotos/2024-12-22/fotografia/170134_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-22/fotografia/170133_101.jpg title29 Este evento es parte de la agenda de actividades que el Gobierno estatal ha preparado para celebrar el fin de año en el puerto de Veracruz con una gran comparsa Despide al Año Viejo. - Comunicación Social / Gobierno del Estado relprettyPhotogallery12> /a>/li> ul> /td> tr> tr> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-18/fotografia/170111_101.jpg title30 La magistrada presidenta del Tribunal Electoral de Veracruz(TEV), Claudia Díaz Tablada, dio a conocer que solicitaron 130 millones de pesos de presupuesto para el Proceso Electoral 2025, sin embargo el Congreso del Estado les redujo a 97 millones de pesos, por lo que solicitarán un aumento para poder contratar a 45 empleados temporales. - Rigoberto Suárez relprettyPhotogallery13> img srcfotos/2024-12-18/fotografia/170111_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-18/fotografia/170108_101.jpg title31 La Secretaría de Educación de Veracruz (SEV) celebró el festival navideño Por amor a las tradiciones veracruzanas. La magia de estar juntos, para reforzar el vínculo con las raíces culturales del estado. - Comunicación Social / Gobierno del Estado relprettyPhotogallery13> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-17/fotografia/170106_101.jpg title32 La Dirección de Educación del Ayuntamiento de Xalapa lleva la magia de Canticuentos a las aulas. En esta ocasión en colaboración con la Biblioteca Pública Municipal Dr. Rafael Lucio, visitaron el Preescolar Héroe de Nacozari, donde las niñas y niños disfrutaron de historias llenas de imaginación y música. - Comunicación Social/ Ayuntamiento de Xalapa relprettyPhotogallery14> img srcfotos/2024-12-17/fotografia/170106_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-17/fotografia/170105_101.jpg title33 Piden poner en orden a las grúas, y otros comienzan con su desorden. Sin respeto a zonas peatonales. - Cortesía Cortesía relprettyPhotogallery14> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-16/fotografia/170104_101.jpg title34 De los servidores públicos a quienes más reconoce su trabajo son los trabajadores de limpia pública, a quienes año con año instituciones como el Jardín de Niños Margarita Maza de Juárez les apoya año con año en especie durante esta temporada. - Cortesía Cortesía relprettyPhotogallery15> img srcfotos/2024-12-16/fotografia/170104_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-16/fotografia/170103_101.jpg title35 De los servidores públicos a quienes más reconoce su trabajo son los trabajadores de limpia pública, a quienes año con año instituciones como el Jardín de Niños Margarita Maza de Juárez les apoya año con año en especie durante esta temporada. - Cortesía Cortesía relprettyPhotogallery15> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-15/fotografia/170100_101.jpg title36 El proyecto fue impulsado por Nahle García, cuando estuvo al frente de la Secretaría de Energía, y ahora como Gobernadora del Estado, reafirma su compromiso para todo el pueblo de Pánuco. - Comunicación Social / Gobierno del Estado relprettyPhotogallery16> img srcfotos/2024-12-15/fotografia/170100_2.jpg width102 height82 />/a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-14/fotografia/170098_101.jpg title37 Con el fin de preservar las tradiciones e impulsar el turismo y la cultura en la región capital, este sábado 14 de diciembre se llevó a cabo el Desfile Navideño 2024. - Mine Guzmán relprettyPhotogallery17> img srcfotos/2024-12-14/fotografia/170098_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-14/fotografia/170097_101.jpg title38 Con el fin de preservar las tradiciones e impulsar el turismo y la cultura en la región capital, este sábado 14 de diciembre se llevó a cabo el Desfile Navideño 2024. - Mine Guzmán relprettyPhotogallery17> /a>/li> li>a hreffotos/2024-12-14/fotografia/170096_101.jpg title39 Con el fin de preservar las tradiciones e impulsar el turismo y la cultura en la región capital, este sábado 14 de diciembre se llevó a cabo el Desfile Navideño 2024. - Mine Guzmán relprettyPhotogallery17> /a>/li> li>a hreffotos/2024-12-14/fotografia/170095_101.jpg title40 En el Pueblo Mágico de Coscomatepec se realiza el cuarto Festival Nacional de Máscaras Danzantes, en el que participan más de mil 500 personas de 13 estados, así como 60 maestros mascareros provenientes de México, Colombia, Costa Rica, Ecuador, Chile y República Dominicana. - Rigoberto Suárez relprettyPhotogallery17> /a>/li> li>a hreffotos/2024-12-14/fotografia/170094_101.jpg title41 En el Pueblo Mágico de Coscomatepec se realiza el cuarto Festival Nacional de Máscaras Danzantes, en el que participan más de mil 500 personas de 13 estados, así como 60 maestros mascareros provenientes de México, Colombia, Costa Rica, Ecuador, Chile y República Dominicana. - Rigoberto Suárez relprettyPhotogallery17> /a>/li> li>a hreffotos/2024-12-14/fotografia/170093_101.jpg title42 En el Pueblo Mágico de Coscomatepec se realiza el cuarto Festival Nacional de Máscaras Danzantes, en el que participan más de mil 500 personas de 13 estados, así como 60 maestros mascareros provenientes de México, Colombia, Costa Rica, Ecuador, Chile y República Dominicana. - Rigoberto Suárez relprettyPhotogallery17> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-13/fotografia/170091_101.jpg title43 El Gobierno del Estado, en colaboración con la Federación y los municipios, permanecen vigilantes de la seguridad de residentes y visitantes durante esta temporada vacacional decembrina. - Comunicación Social / Gobierno del Estado relprettyPhotogallery18> img srcfotos/2024-12-13/fotografia/170091_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-13/fotografia/170087_101.jpg title44 El Combiscopio Comunitario que acerca a niñas y niños con el cine llegará 15 de diciembre a la explanada parque Juárez a las 8 de la noche. Todos los interesados en conocer a nuevas personas, ver películas y participar en una actividad para hablar, reflexionar y socializar están invitados a no perderse la función gratuita. - Rigoberto Suárez relprettyPhotogallery18> /a>/li> li>a hreffotos/2024-12-13/fotografia/170086_101.jpg title45 Jóvenes y niños del CAM 68 de educación especial acudieron al Congreso del Estado a cantar ‘La Rama’. - Rigoberto Suárez relprettyPhotogallery18> /a>/li> li>a hreffotos/2024-12-13/fotografia/170085_101.jpg title46 Jóvenes y niños del CAM 68 de educación especial acudieron al Congreso del Estado a cantar ‘La Rama’. - Rigoberto Suárez relprettyPhotogallery18> /a>/li> li>a hreffotos/2024-12-13/fotografia/170084_101.jpg title47 Extrabajadores de la Subsecretaría de Ganadería y Pesca de la Secretaría de Desarrollo Agropecuario, Rural y Pesca (SEDARPA) reclamaron la falta de pago y el mal manejo de la administración entrante.Por ello, hicieron un llamado a la gobernadora Rocío Nahle García para que se les pague lo que les corresponde conforme a la Ley, en apego a sus derechos como extrabajadores del Gobierno del Estado - Rigoberto Suárez relprettyPhotogallery18> /a>/li> ul> /td> tr> tr> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-12/fotografia/170083_101.jpg title48 Para garantizar el acceso a medicamentos en todo el territorio estatal, particularmente, comunidades marginadas y de difícil acceso, la gobernadora de Veracruz Rocío Nahle García, dio el banderazo de salida a la flotilla inicial de 11 Camionetitas de la Salud, cumpliendo uno más de sus compromisos de campaña. - Comunicación Social / Gobierno del Estado relprettyPhotogallery19> img srcfotos/2024-12-12/fotografia/170083_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-12/fotografia/170082_101.jpg title49 Para garantizar el acceso a medicamentos en todo el territorio estatal, particularmente, comunidades marginadas y de difícil acceso, la gobernadora de Veracruz Rocío Nahle García, dio el banderazo de salida a la flotilla inicial de 11 Camionetitas de la Salud, cumpliendo uno más de sus compromisos de campaña. - Comunicación Social / Gobierno del Estado relprettyPhotogallery19> /a>/li> li>a hreffotos/2024-12-12/fotografia/170080_101.jpg title50 Al parecer un cortocircuito y conato de incendio en un negocio de la esquina de Lucio y Juárez en el centro de Xalapa, provocó la movilización de Bomberos. La zona fue acordonada y el incidente controlado. - corresponsal multigráfica relprettyPhotogallery19> /a>/li> li>a hreffotos/2024-12-12/fotografia/170079_101.jpg title51 La presidenta de la Mesa Directiva de la LXVII Legislatura del Estado de Veracruz, diputada Tanya Carola Viveros Cházaro, recibió los informes de labores 2024 de la y el titular de las Comisiones Estatal de Derechos Humanos (CEDH), Namiko Matzumoto Benítez, y Estatal para la Atención y Protección de Periodistas (CEAPP), Silverio Quevedo Elox, quienes cumplen en tiempo y forma con lo dispuesto en el párrafo segundo del Artículo 67 de la Constitución Política local. - LXVII Legislatura de Veracruz relprettyPhotogallery19> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-11/fotografia/170065_101.jpg title52 En un ambiente de calidez, la gobernadora de Veracruz Rocío Nahle García, acompañada por la familia del Sistema Estatal para el Desarrollo Integral de la Familia (DIF), encabezó el encendido del árbol navideño. - Comunicación Social / Gobierno del Estado relprettyPhotogallery20> img srcfotos/2024-12-11/fotografia/170065_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-11/fotografia/170064_101.jpg title53 En un ambiente de calidez, la gobernadora de Veracruz Rocío Nahle García, acompañada por la familia del Sistema Estatal para el Desarrollo Integral de la Familia (DIF), encabezó el encendido del árbol navideño. - Comunicación Social / Gobierno del Estado relprettyPhotogallery20> /a>/li> li>a hreffotos/2024-12-11/fotografia/170063_101.jpg title54 En Sala Roja de Palacio de Gobierno, la Jefa del Ejecutivo Rocío Nahle García recibió el Informe de Actividades correspondiente al año en curso de la Fiscalía General del Estado, a cargo de Verónica Hernández Giadáns. - Comunicación Social / Gobierno del Estado relprettyPhotogallery20> /a>/li> li>a hreffotos/2024-12-11/fotografia/170060_101.jpg title55 El presidente municipal Alberto Islas Reyes acudió este miércoles a la colonia Emiliano Zapata, con el fin de supervisar el avance que registra la construcción de un cárcamo de bombeo de aguas pluviales en el Andador Los Pinos. - Comunicación Social/ Ayuntamiento de Xalapa relprettyPhotogallery20> /a>/li> li>a hreffotos/2024-12-11/fotografia/170059_101.jpg title56 El presidente municipal Alberto Islas Reyes acudió este miércoles a la colonia Emiliano Zapata, con el fin de supervisar el avance que registra la construcción de un cárcamo de bombeo de aguas pluviales en el Andador Los Pinos. - Comunicación Social/ Ayuntamiento de Xalapa relprettyPhotogallery20> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-10/fotografia/170053_101.jpg title57 Jesús Emanuel Mendoza González, director general de Delfines Marching Band de la Secundaria General no. 5, para hacer una cordial invitación a la ciudadanía xalapeña a que asistan al Band Fest magno evento se desarrollará este domingo 15 en el Estadio Xalapeño a las 16:30 horas con un costo de $50, en taquilla de 70 pesos, siendo apto para toda la familia. - Rigoberto Suárez relprettyPhotogallery21> img srcfotos/2024-12-10/fotografia/170053_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-10/fotografia/170051_101.jpg title58 Desde este martes y hasta el 14 de febrero del 2025, el Instituto Municipal de la Mujer mantendrá abierta la convocatoria para participar por la “Medalla Insurgente: María Teresa Medina y Miranda 2025. - Rigoberto Suárez relprettyPhotogallery21> /a>/li> li>a hreffotos/2024-12-10/fotografia/170050_101.jpg title59 Añadió que el estado cuenta con la colaboración de la Secretaría de Seguridad y Protección Ciudadana del Gobierno de México. - Rigoberto Suárez relprettyPhotogallery21> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-09/fotografia/170044_101.jpg title60 Para difundir y conservar las tradiciones decembrinas, este lunes el presidente municipal Alberto Islas Reyes recibió a alumnas y alumnos de los jardines de niños Gertrudis Guevara de Vite, Bertha Von Glumer y el Centro de Atención Múltiple Roberto Solís Quiroga, quienes le cantaron La Rama en el patio central de Palacio Municipal. - Comunicación Social/ Ayuntamiento de Xalapa relprettyPhotogallery22> img srcfotos/2024-12-09/fotografia/170044_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-09/fotografia/170043_101.jpg title61 Adriana Fuentes, coordinadora general de la asociación, dijo que la campaña inició a través de sus redes sociales el 30 de noviembre y concluirá en febrero de 2025. Además, la aportación hecha será totalmente deducible de impuestos. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170042_101.jpg title62 La Asociación Civil Equifonía, Voces en Libertad A. C ofrece a la ciudadanía, empresas, grupos y organizaciones interesadas en colaborar a adquirir bonos de donativos de $1,000.00 por cada uno en su campaña Mil Gracias, para financiar los programas que esta organización realiza en favor de las niñas, jóvenes y mujeres veracruzanas. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170041_101.jpg title63 Habitantes del predio El Moral marcharon y protestaron por Ávila Camacho hasta el Palacio Municipal de Xalapa para exigir la regularización de sus terrenos y solicitar que Bertha Hernández, representante actual, deje de intervenir en sus demandas ya que se dicen estafados por esta persona. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170040_101.jpg title64 Habitantes del predio El Moral marcharon y protestaron por Ávila Camacho hasta el Palacio Municipal de Xalapa para exigir la regularización de sus terrenos y solicitar que Bertha Hernández, representante actual, deje de intervenir en sus demandas ya que se dicen estafados por esta persona. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170039_101.jpg title65 Habitantes del predio El Moral marcharon y protestaron por Ávila Camacho hasta el Palacio Municipal de Xalapa para exigir la regularización de sus terrenos y solicitar que Bertha Hernández, representante actual, deje de intervenir en sus demandas ya que se dicen estafados por esta persona. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170037_101.jpg title66 Previo a mantener una reunión con Colectivos, la gobernadora Rocío Nahle, acompañada por el secretario de Gobierno, Ricardo Ahued Bardahuil, atendió a niños de la escuela primaria Enrique C. Rébsamen, quienes le cantaron la rama. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> li>a hreffotos/2024-12-09/fotografia/170036_101.jpg title67 Previo a mantener una reunión con Colectivos, la gobernadora Rocío Nahle, acompañada por el secretario de Gobierno, Ricardo Ahued Bardahuil, atendió a niños de la escuela primaria Enrique C. Rébsamen, quienes le cantaron la rama. - Rigoberto Suárez relprettyPhotogallery22> /a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-08/fotografia/170035_101.jpg title68 La gobernadora de Veracruz, Rocío Nahle García, participó como invitada de honor en la toma de protesta del recién nombrado gobernador constitucional de Chiapas, Eduardo Ramírez Aguilar. - Comunicación Social / Gobierno del Estado relprettyPhotogallery23> img srcfotos/2024-12-08/fotografia/170035_2.jpg width102 height82 />/a>/li> ul> /td> td width101>ul classgallery clearfix> li>a hreffotos/2024-12-07/fotografia/170034_101.jpg title69 Nuevamente este 7 de diciembre se reprodujo la tradición del norte del Estado conocida como El Niño Perdido, que consiste en colocar velas en las calles en sitios públicos. n Xalapa se colocaron velas en: velas en el Paseo los Lagos, parque Juárez, el Barrio Xallitic, entre otros. - Rigoberto Suárez relprettyPhotogallery24> img srcfotos/2024-12-07/fotografia/170034_2.jpg width102 height82 />/a>/li> li>a hreffotos/2024-12-07/fotografia/170033_101.jpg title70 Nuevamente este 7 de diciembre se reprodujo la tradición del norte del Estado conocida como El Niño Perdido, que consiste en colocar velas en las calles en sitios públicos. n Xalapa se colocaron velas en: velas en el Paseo los Lagos, parque Juárez, el Barrio Xallitic, entre otros. - Rigoberto Suárez relprettyPhotogallery24> /a>/li> li>a hreffotos/2024-12-07/fotografia/170032_101.jpg title71 Nuevamente este 7 de diciembre se reprodujo la tradición del norte del Estado conocida como El Niño Perdido, que consiste en colocar velas en las calles en sitios públicos. n Xalapa se colocaron velas en: velas en el Paseo los Lagos, parque Juárez, el Barrio Xallitic, entre otros. - Rigoberto Suárez relprettyPhotogallery24> /a>/li> li>a hreffotos/2024-12-07/fotografia/170031_101.jpg title72 Peregrinación anual de quinceañeras en Córdoba, saliendo de la Catedral con banda de guerra adelante; al frente el padre Domingo. - Hugo Morales A. relprettyPhotogallery24> /a>/li> li>a hreffotos/2024-12-07/fotografia/170030_101.jpg title73 Peregrinación anual de quinceañeras en Córdoba, saliendo de la Catedral con banda de guerra adelante; al frente el padre Domingo. - Hugo Morales A. relprettyPhotogallery24> /a>/li> li>a hreffotos/2024-12-07/fotografia/170029_101.jpg title74 Peregrinación anual de quinceañeras en Córdoba, saliendo de la Catedral con banda de guerra adelante; al frente el padre Domingo. - Hugo Morales A. relprettyPhotogallery24> /a>/li> ul> /td> tr> /table> /div> /div> div idtres> div classmtres> a hrefnota/57771/con-rosca-de-reyes-el-congreso-de-veracruz-inicia-2025>img srcfotos/2025-01-06/fotografia/170233_d1.jpg> h1>strong>CON ROSCA DE REYES, EL CONGRESO DE VERACRUZ INICIA 2025strong>/h1> p> span>Xalapa 06 Enero 2025 /span >Al concluir la temporada de Navidad, autoridades y personal comparten un momento de convivencia /p> /a> /div> div classmtres> a hrefnota/57770/congreso-entregara-medalla-adolfo-ruiz-cortines>img srcfotos/2025-01-06/fotografia/170232_d1.jpg> h1>strong>Congreso entregará medalla Adolfo Ruiz Cortinesstrong>/h1> p> span>Xalapa 06 Enero 2025 /span >Los tres poderes del estado condecorarán al profesor de educación indígena Tirso Bautista Cárdenas /p> /a> /div> div classmtres> a hrefnota/57769/rocao-nahle-destaca-el-legado-de-la-ley-agraria-en-el-puerto-de-veracruz>img srcfotos/2025-01-06/fotografia/170231_d1.jpg> h1>strong>ROCÍO NAHLE DESTACA EL LEGADO DE LA LEY AGRARIA EN EL PUERTO DE VERACRUZstrong>/h1> p> span>Xalapa 06 Enero 2025 /span >Honró la historia y reafirmó el compromiso con el bienestar rural. /p> /a> /div> /div> div stylewidth:988px; height:350px; float:left; margin:12px 0px 0px 15px;> div style width:165px; height:345px; float:left; margin-top:5px; background: url(imagenes/fondo1.png);> div stylewidth:165px;float:left;margin-top:5px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:12px; font-weight:bold>CHINA EN MI IMAGINACIÓN/div> div style width:140px; float:left; margin:8px 10px 0px 11px>a hrefgaleria/7/170244/andanzas/china-en-mi-imaginacian>img srcfotos/2025-01-08/fotografia/170244_13.jpg width140 />/a> /div> div classtablell stylewidth:160px; height:85px; float:left; margin-top:3px; margin-left:5px; font-family:Arial, Helvetica, sans-serif; color:#FFF; font-size:11px;>Ciudad de México 2025-01-08 Se exhibirán 103 trabajos realizadas por niñas y niños mexicanos en los que reflejan la esencia de la arquitectura China Cortesía Cortesía/div> /div> div style width:165px; height:345px; float:left; margin-left:12px; margin-top:5px; background: url(imagenes/fondo1.png);> div stylewidth:165px;float:left;margin-top:5px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:12px; font-weight:bold>/div> div style width:140px; float:left; margin:8px 6px 0px 12px>a hrefgaleria/5//plaza-legislativa/>img src_13.jpg width140 />/a>/div> div classtablell stylewidth:160px; height:85px; float:left; margin-top:3px; margin-left:5px; font-family:Arial, Helvetica, sans-serif; color:#FFF; font-size:11px;>br />br /> /div> /div> div style width:309px; height:345px; float:left; margin-left:12px; margin-top:5px; background: url(imagenes/fondo1.png);> div stylewidth:308px;float:left;margin-top:5px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:12px; font-weight:bold>OLA DE VIOLENCIA/div> div style width:271px; float:left; margin:8px 6px 0px 19px>a hrefgaleria/10/170245/caricatura/ola-de-violencia>img srcfotos/2025-01-08/fotografia/170245_101.jpg width271 />/a>/div> div classtable stylewidth:270px; height:85px; float:left; margin-top:9px; margin-left:20px;>Ixtaczoquitlán, Ver. 2025-01-08 br /> Este suceso se suma a la ola de violencia que ha vivido la zona centro.br />archivo multigráfica /div> /div> div style width:308px; height:345px; float: left; margin-left:12px; margin-top:5px; background: url(imagenes/fondo1.png);> div stylewidth:308px;float:left;margin-top:5px; font-family:Arial, Helvetica, sans-serif; color:#FFFFFF; font-size:12px; font-weight:bold>CONVENIO/div> div style width:271px; float:left; margin:8px 6px 0px 19px>a hrefgaleria/6/170249/tunel-del-tiempo/convenio>img srcfotos/2025-01-08/fotografia/170249_101.jpg width271 />/a>/div> div classtable stylewidth:270px; height:85px; float:left; margin-top:9px; margin-left:20px;>Xalapa, Ver. 2025-01-08 br /> INE y OPLE Veracruz firman convenio de colaboración con la Secretaría de Seguridad Pública del Gobierno del Estado de Veracruzbr /> Cortesía Cortesía/div> /div> /div> div stylewidth:300px; height:440px; float:left; background: url(imagenes/fondo11.png); margin-left:15px; margin-top:20px;> div stylewidth:300px; height:355px; float:left; margin-top:79px; margin-left:5px; overflow-y: scroll;> table width275> !--tr> td aligncenter>a hrefcolumna/25/columna-sin-nombre titleColumna sin nombre accesskeyPablo Jair Ortega>img srcimagenes/colum4.png width60 />/a>/td> td>a hrefcolumna/25/columna-sin-nombre titleColumna sin nombre accesskeyPablo Jair Ortega>span classtable4>Pablo Jair Ortega/span>br /> span classtable3>Columna sin nombre/span>/a>/td> /tr>--> tr> td aligncenter>a hrefcolumna/16/mi-libreta-de-apuntes titleMi Libreta de apuntes accesskeyManuel Rosete Chavez>img srcimagenes/colum6.png width60 />/a>/td> td>a hrefcolumna/16/mi-libreta-de-apuntes titleMi Libreta de apuntes accesskeyManuel Rosete Chavez>span classtable4>Manuel Rosete Chavez/span>br /> span classtable3>Mi Libreta de apuntes/span>/a>/td> /tr> tr> td aligncenter>a hrefcolumna/24/repechaje titleRepechaje accesskeyQuirino Moreno Quiza>img srcimagenes/colum7.png width60 />/a>/td> td>a hrefcolumna/24/repechaje titleRepechaje accesskeyQuirino Moreno Quiza>span classtable4>Quirino Moreno Quiza/span>br /> span classtable3>Repechaje/span>/a>/td> /tr> tr> td aligncenter>a hrefcolumna/31/plaza-caracol titlePlaza Caracol accesskeyHelí Herrera>img srcimagenes/colum10.png width60 />/a>/td> td>a hrefcolumna/31/plaza-caracol titlePlaza Caracol accesskeyHelí Herrera>span classtable4>Helí Herrera/span>br /> span classtable3>Plaza Caracol/span>/a>/td> /tr> tr> td aligncenter>a hrefcolumna/39/bitacora-pola-tica titleBitacora política accesskeyMiguel Angel Cristiani>img srcimagenes/colum15.png width60 />/a>/td> td>a hrefcolumna/39/bitacora-pola-tica titleBitacora política accesskeyMiguel Angel Cristiani>span classtable4>Miguel Angel Cristiani/span>br /> span classtable3>Bitacora política/span>/a>/td> /tr> /table> /div> /div> div stylewidth:660px; height:440px; float:left; background: url(imagenes/cartonback.png); background-position:top left; background-repeat:no-repeat; margin-left:20px; margin-top:20px; background-color:#292929> div stylewidth:640px; height:340px; float:left; margin-top:79px; margin-left:10px;>center>a hrefgaleria/10/170077/caricatura/>img srcfotos/2024-12-12/caricatura/170077_88.jpg stylemax-height:340px; max-width:640px; border0 />/a>/center>/div> /div> div stylewidth:982px; height:304px; float:left; margin:12px 0px 0px 15px; background: url(imagenes/fondobajo2.png);> /div> /td> /tr>/table>script typetext/javascript srcjquery.nivo.slider.js>/script> script typetext/javascript> $(window).load(function() { $(#slider).nivoSlider({ delay : 19000, effect:fade, }); }); /script> script typetext/javascript charsetutf-8> $(document).ready(function(){ $(arearel^prettyPhoto).prettyPhoto(); $(.gallery:first arel^prettyPhoto).prettyPhoto({animation_speed:normal,theme:light_square,slideshow:3000, autoplay_slideshow: true, default_width:745,default_height:558}); $(.gallery:gt(0) arel^prettyPhoto).prettyPhoto({animation_speed:fast,slideshow:10000, hideflash: true}); }); /script> script> (function(i,s,o,g,r,a,m){iGoogleAnalyticsObjectr;irir||function(){ (ir.qir.q||).push(arguments)},ir.l1*new Date();as.createElement(o), ms.getElementsByTagName(o)0;a.async1;a.srcg;m.parentNode.insertBefore(a,m) })(window,document,script,https://www.google-analytics.com/analytics.js,ga); ga(create, UA-97751379-1, auto); ga(send, pageview);/script>!-- Google tag (gtag.js) -->script async srchttps://www.googletagmanager.com/gtag/js?idG-Z6V5X7LJ0P>/script>script> window.dataLayer window.dataLayer || ; function gtag(){dataLayer.push(arguments);} gtag(js, new Date()); gtag(config, G-Z6V5X7LJ0P);/script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]