Team:Ciencias-UNAM/Safety
From 2012.igem.org
(Prototype team page) |
|||
Line 1: | Line 1: | ||
- | |||
- | < | + | <?xml version="1.0" encoding="UTF-8"?> |
- | + | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
- | < | + | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
- | + | <head> | |
- | + | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
- | + | ||
- | + | ||
- | < | + | |
- | < | + | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | <!-- | + | <!-- //////////// Site Name //////////// --> |
+ | <title>Tech Startup Nights</title> | ||
+ | <!-- //////////// Website Icon //////////// --> | ||
+ | <link rel="shortcut icon" href="favicon.png" type="image/png" /> | ||
- | + | <!-- //////////// STYLESSHEETS //////////// --> | |
- | + | <link href="css/style.css" type="text/css" rel="stylesheet" /> | |
- | + | <link href="css/pirobox_lightbox.css" type="text/css" rel="stylesheet" /> | |
- | + | <link rel="stylesheet" href="css/nivo-slider.css" type="text/css" media="screen" /> | |
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
- | + | ||
+ | <!-- //////////// SCRIPTS //////////// --> | ||
+ | <script type="text/javascript" src="js/jquery.min.js"></script> | ||
+ | <script src="js/jquery.nivo.slider.pack.js" type="text/javascript"></script> | ||
+ | <script type="text/javascript" src="js/jquery.easing.1.3.js"></script> | ||
+ | <script type="text/javascript" src="js/pirobox.min.js"></script> | ||
+ | <script src="js/jquery.slidinglabels.js" type="text/javascript"></script> | ||
- | + | <script type="text/javascript"> | |
+ | $(document).ready(function() { | ||
+ | $().piroBox({ | ||
+ | my_speed: 400, //animation speed | ||
+ | bg_alpha: 0.6, //background opacity | ||
+ | slideShow : true, // true == slideshow on, false == slideshow off | ||
+ | slideSpeed : 4, //slideshow duration in seconds(3 to 6 Recommended) | ||
+ | close_all : '.piro_close,.piro_overlay'// add class .piro_overlay(with comma)if you want overlay click close piroBox | ||
+ | |||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <!-- //////////// Settings for fixed sidebar layout //////////// --> | ||
+ | <script type="text/javascript"> | ||
+ | $(document).ready(function() { | ||
+ | |||
+ | function staticNav() { | ||
+ | var sidenavHeight = $("#sidenav").height(); | ||
+ | var winHeight = $(window).height(); | ||
+ | var browserIE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false; | ||
+ | |||
+ | if (browserIE6) { | ||
+ | $("#sidenav").css({'position' : 'absolute'}); | ||
+ | } else { | ||
+ | $("#sidenav").css({'position' : 'fixed'}); | ||
+ | } | ||
+ | |||
+ | if (sidenavHeight > winHeight) { | ||
+ | $("#sidenav").css({'position' : 'static'}); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | staticNav(); | ||
+ | |||
+ | $(window).resize(function () { //Each time the viewport is adjusted/resized, execute the function | ||
+ | staticNav(); | ||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <script type="text/javascript" src="js/smoothscroll.js"></script> | ||
+ | |||
+ | <!-- //////////// Settings for Nivo Slider //////////// --> | ||
+ | <script type="text/javascript"> | ||
+ | $(window).load(function() { | ||
+ | $('#slider').nivoSlider({ | ||
+ | effect:'random', | ||
+ | slices:15, | ||
+ | animSpeed:500, | ||
+ | pauseTime:6000, | ||
+ | startSlide:0, //Set starting Slide (0 index) | ||
+ | directionNav:true, //Next & Prev | ||
+ | directionNavHide:true, //Only show on hover | ||
+ | controlNav:true, //1,2,3... | ||
+ | controlNavThumbs:false, //Use thumbnails for Control Nav | ||
+ | controlNavThumbsSearch: '.jpg', //Replace this with... | ||
+ | controlNavThumbsReplace: '_thumb.jpg', //...this in thumb Image src | ||
+ | keyboardNav:true, //Use left & right arrows | ||
+ | pauseOnHover:true, //Stop animation while hovering | ||
+ | manualAdvance:false, //Force manual transitions | ||
+ | captionOpacity:0.8, //Universal caption opacity | ||
+ | beforeChange: function(){}, | ||
+ | afterChange: function(){}, | ||
+ | slideshowEnd: function(){} //Triggers after all slides have been shown | ||
+ | }); | ||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | $(document).ready(function () { | ||
+ | |||
+ | // transition effect | ||
+ | style = 'easeOutBounce'; | ||
+ | |||
+ | // if the mouse hover the image | ||
+ | $('.photo').hover( | ||
+ | function() { | ||
+ | //display heading and caption | ||
+ | $(this).children('div:first').stop(false,true).animate({top:0},{duration:600, easing: style}); | ||
+ | $(this).children('div:last').stop(false,true).animate({bottom:0},{duration:600, easing: style}); | ||
+ | }, | ||
+ | |||
+ | function() { | ||
+ | //hide heading and caption | ||
+ | $(this).children('div:first').stop(false,true).animate({top:-50},{duration:600, easing: style}); | ||
+ | $(this).children('div:last').stop(false,true).animate({bottom:-50},{duration:600, easing: style}); | ||
+ | } | ||
+ | ); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | |||
+ | <script type="text/javascript"> | ||
+ | $(function(){ | ||
+ | |||
+ | $('#contactform').slidinglabels({ | ||
+ | |||
+ | /* these are all optional */ | ||
+ | topPosition : '8px', // how far down you want each label to start | ||
+ | leftPosition : '8px', // how far left you want each label to start | ||
+ | axis : 'x', // can take 'x' or 'y' for slide direction | ||
+ | speed : 'fast' // can take 'fast', 'slow', or a numeric value | ||
+ | |||
+ | }); | ||
+ | |||
+ | }); | ||
+ | </script> | ||
+ | </head> | ||
+ | |||
+ | <body> | ||
+ | |||
+ | <!-- //////////// Container *Holds Left and Right Colums Together* //////////// --> | ||
+ | <div class="container"> | ||
+ | |||
+ | <!-- //////////// SideNavbar *Everything in Left-Hand Column* //////////// --> | ||
+ | <div id="sidenav"> | ||
+ | <img src="images/logo.png" alt="" class="logo" /> | ||
+ | |||
+ | <!-- //////////// MAIN NAVIGATION //////////// --> | ||
+ | <ul> | ||
+ | <li><a class="home" href="#home">¿Qué es TSN?</a></li> | ||
+ | <li><a class="portfolio" href="#portfolio">TSNs</a></li> | ||
+ | <!-- <li><a class="services" href="#services">Registra tu startup</a></li>--> | ||
+ | <li><a class="contact" style="border-bottom: 0;" href="#contact">Contáctanos</a></li> | ||
+ | </ul> | ||
+ | |||
+ | <!-- //////////// SOCIAL NETWORKING BLOCK //////////// --> | ||
+ | <div id="social"> | ||
+ | <div class="social_facebook"><a href="http://www.facebook.com/" title=""> </a></div><!-- //social_facebook --> | ||
+ | <div class="social_twitter"><a href="http://www.twitter.com/" title=""> </a></div><!-- //social_twitter --><!-- | ||
+ | <div class="social_lastfm"><a href="http://www.last.fm/" title=""> </a></div><!-- //social_lastfm --> | ||
+ | <!-- <div class="social_flickr"><a href="http://www.flickr.com/" title=""> </a></div>//social_flickr --> | ||
+ | </div><!-- //social --> | ||
+ | |||
+ | <!-- //////////// Sidenav Footer //////////// --> | ||
+ | <div id="footer"> | ||
+ | <img src="images/patrocinios/BlackBerry.png" /><br /><br /> | ||
+ | <img src="images/patrocinios/Huawei.png" /><br /><br /> | ||
+ | ©<a href="http://aventuracp.com.mx" target="_blank"> Aventura Capital Partners </a> 2012 | ||
+ | </div><!-- //footer --> | ||
+ | </div><!-- //sidenav --> | ||
+ | |||
+ | <!-- //////////// Anchor used to scroll to HOME //////////// --> | ||
+ | <a name="home"></a> | ||
+ | |||
+ | <!-- //////////// Content *Everything in Right-Hand Column* //////////// --> | ||
+ | <div id="content"> | ||
+ | |||
+ | <!-- //////////// NIVO SLIDER //////////// --> | ||
+ | <div id="slider"> | ||
+ | <img src="images/slider/slide1.jpg" alt="" /> | ||
+ | <img src="images/slider/slide2.jpg" alt="" /> | ||
+ | <img src="images/slider/slide3.jpg" alt="" title="" /> | ||
+ | </div> | ||
+ | <br /> | ||
+ | <p style="font-size:10px;"> | ||
+ | Último Tweet: ooooooooo ooooooooooooo ooooooo ooooooooooooo oooooooooooooo ooooooooooooooooo oooooooooo oooooooooooooo ooooooooooo ooooooo ooooooo ooooooo</p> | ||
+ | <p style="text-align:center; color:#FFFFFF; font-size:12px; line-height:5px;">Faltan</p> | ||
+ | <p style="text-align:center; color:#FA0; font-size:66px; line-height:20px;">5</p> | ||
+ | <p style="text-align:center; color:#FFFFFF; font-size:12px; line-height:40px;">días para el #TSN7 | ||
+ | <h2>¿Qué es?</h2> | ||
+ | <p>Tech Startup Nights es un punto de encuentro para aquellos que tienen la inquietud de iniciar, ya tienen, trabajan o les interesa tener una empresa con un diferenciador tecnológico o innovador que permita un crecimiento acelerado. </p> | ||
+ | <p>El tercer jueves de cada mes, en punto de las 7:30 pm, en una ubicación previamente anunciada, nos juntaremos para conocernos,compartir experiencias y pasar un buen rato en compañía de otros con intereses similares a los nuestros. </p> | ||
+ | |||
+ | <!-- //////////// Anchor used to scroll to PORTFOLIO //////////// --> | ||
+ | <a name="portfolio"></a> | ||
+ | |||
+ | <h2>Otros Tech Startup Nights</h2> | ||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>#TSN5</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN5/01.jpg" class="pirobox_work01" title="Carrot mx">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN5/02.jpg" class="pirobox_work01" title="Sin Delantal mx">02</a></div> | ||
+ | <div class="mini"><a href="images/TSN5/01.jpg" class="pirobox_work01" title="Carrot mx">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN5/02.jpg" class="pirobox_work01" title="Sin Delantal mx">02</a></div> | ||
+ | <div class="mini"><a href="images/TSN5/01.jpg" class="pirobox_work01" title="Carrot mx">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN5/02.jpg" class="pirobox_work01" title="Sin Delantal mx">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | #TSN5 | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>MSA</span></div> | ||
+ | <img src="images/TSNs/MSA/MSA_thumb.jpg" alt="Mexican Startup Awards" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSNs/MSA/MSA.jpg" class="pirobox_work01" title="Esta es una muestra del footer">*</a></div> | ||
+ | <div class="mini"><a href="images/TSNs/MSA/MSA1.jpg" class="pirobox_work01">*</a></div> | ||
+ | <div class="mini"><a href="images/TSNs/MSA/MSA2.jpg" class="pirobox_work01">*</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | Mexican Startup Awards | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>#TSN4</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN4/01.jpg" class="pirobox_work01" title="Cuanto cobrar">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN4/02.jpg" class="pirobox_work01" title="Easy Broker">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | #TSN4 | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>#TSN3</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN3/01.jpg" class="pirobox_work01" title="Last Room mx">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN3/02.jpg" class="pirobox_work01" title="Capptalog">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | #TSN3 | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>#TSN2</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN2/01.jpg" class="pirobox_work01" title="Yumbling">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN2/02.jpg" class="pirobox_work01" title="Datateam">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | #TSN2 | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>Vivek Wadhwa</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN2/01.jpg" class="pirobox_work01" title="Yumbling">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN2/02.jpg" class="pirobox_work01" title="Datateam">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | Vivek Wadhwa | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | <div id="portfolio"> | ||
+ | <div class="photowrapper"> | ||
+ | <div class="photo"> | ||
+ | <div class="heading"><span>#TSN1</span></div> | ||
+ | <img src="images/portfolio/sample_project/.jpg" alt="" /> | ||
+ | <div class="imagecaption"> | ||
+ | <span>Presentó:</span> | ||
+ | <div class="mini"><a href="images/TSN1/01.jpg" class="pirobox_work01" title="Da para darse">01</a></div> | ||
+ | <div class="mini"><a href="images/TSN1/02.jpg" class="pirobox_work01" title="Sistema financiero con el nombre muy largo">02</a></div> | ||
+ | </div><!-- //imagecaption --> | ||
+ | </div><!-- //photo --> | ||
+ | <div class="photocaption"> | ||
+ | #TSN1 | ||
+ | </div><!-- //photocaption --> | ||
+ | </div><!-- //photowrapper --> | ||
+ | |||
+ | |||
+ | </div><!-- //portfolio --> | ||
+ | <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> | ||
+ | <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> | ||
+ | |||
+ | <p>Estas son las empresas que han presentado en los diferentes Tech Startup Nights </p> | ||
+ | |||
+ | <!-- //////////// Anchor used to scroll to SERVICES //////////// --> | ||
+ | <!-- | ||
+ | <a name="services"></a> | ||
+ | |||
+ | <h2>Services & Rates</h2> | ||
+ | |||
+ | <p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero enim.</p> | ||
+ | |||
+ | <table cellpadding="0" cellspacing="0"> | ||
+ | <tr> | ||
+ | <th> </th> | ||
+ | <th>Lite<br /><strong>$150</strong></th> | ||
+ | <th>Basic<br /><strong>$350</strong></th> | ||
+ | <th>Full<br /><strong>$550</strong></th> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="textright">Design Concepts Presented</td> | ||
+ | <td>01</td> | ||
+ | <td>02</td> | ||
+ | <td>03</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="textright">Home Page Design</td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="textright">Secondary Page Design</td> | ||
+ | <td><img src="images/icon_rates_no.gif" alt="No" /></td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="textright">Full Website Design Rollout</td> | ||
+ | <td><img src="images/icon_rates_no.gif" alt="No" /></td> | ||
+ | <td><img src="images/icon_rates_no.gif" alt="No" /></td> | ||
+ | <td><img src="images/icon_rates_tick.gif" alt="Yes" /></td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="textright">Number of Reverts/Amendments</td> | ||
+ | <td>02</td> | ||
+ | <td>05</td> | ||
+ | <td>10</td> | ||
+ | </tr> | ||
+ | <tr> | ||
+ | <td class="bottoms"> </td> | ||
+ | <td class="bottoms"><span class="requestbutton"><a href="#contact"> </a></span></td> | ||
+ | <td class="bottoms"><span class="requestbutton"><a href="#contact"> </a></span></td> | ||
+ | <td class="bottoms"><span class="requestbutton"><a href="#contact"> </a></span></td> | ||
+ | </tr> | ||
+ | </table> | ||
+ | |||
+ | <p>Commoveo wisi nulla pala illum melior quis. Et luptatum validus wisi ingenium humo quidne, eros lucidus dolore ea vel amet. Capto, praemitto singularis tation duis consequat. Jus vulputate ingenium mauris ut, vero. Enim suscipit exerci eligo dolus decet elit transverbero. </p> | ||
+ | |||
+ | <!-- //////////// Anchor used to scroll to CONTACT //////////// --> | ||
+ | |||
+ | <a name="contact"></a> | ||
+ | <h2>Escríbenos</h2> | ||
+ | |||
+ | <form action="" method="post" id="contactform"> | ||
+ | <div id="name-wrap" class="slider"> | ||
+ | <label for="name">Nombre</label> | ||
+ | <input type="text" id="name" name="name" /> | ||
+ | </div><!--//name-wrap--> | ||
+ | |||
+ | <div id="email-wrap" class="slider"> | ||
+ | <label for="email">E–mail</label> | ||
+ | <input type="text" id="email" name="email" /> | ||
+ | </div><!--//email-wrap--> | ||
+ | |||
+ | <div id="phone-wrap" class="slider"> | ||
+ | <label for="phone">Teléfono</label> | ||
+ | <input type="text" id="phone" name="phone" /> | ||
+ | </div><!--//phone-wrap--> | ||
+ | |||
+ | <div id="url-wrap" class="slider"> | ||
+ | <label for="url">Website</label> | ||
+ | <input type="text" id="url" name="url" /> | ||
+ | </div><!--//email-wrap--> | ||
+ | |||
+ | <div id="comment-wrap" class="slider"> | ||
+ | <label for="comment">Comentarios</label> | ||
+ | <textarea cols="53" rows="10" id="comment"></textarea> | ||
+ | </div><!--//comment-wrap--> | ||
+ | |||
+ | <div><button type="submit" id="btn" name="btn">Enviar</button></div> | ||
+ | |||
+ | </form> | ||
+ | |||
+ | <div id="contactdetails"> | ||
+ | <iframe width="420" height="268" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com.mx/maps?f=q&source=s_q&hl=es&geocode=&q=hotel+brick&aq=&sll=23.554132,-102.6205&sspn=23.426919,39.506836&ie=UTF8&hq=hotel+brick&t=m&ll=19.420945,-99.160495&spn=0.010847,0.017982&z=15&iwloc=A&output=embed"></iframe><br /> | ||
+ | |||
+ | <p> | ||
+ | <strong>¿EN DÓNDE?</strong><br /> | ||
+ | Bar del Hotel Brick<br /> | ||
+ | Orizaba esq. Tabasco, Col. Roma, <br /> | ||
+ | Del. Cuauhtémoc, México D. F.<br /> | ||
+ | E-mail : <a href="mailto:info@aventuracp.com.mx" title="Escríbenos">info@aventuracp.com.mx</a> | ||
+ | |||
+ | </p> | ||
+ | </div><!-- //contactdetails --> | ||
+ | |||
+ | <div class="clearall"></div><!-- //clearall --> | ||
+ | |||
+ | <div id="footfiller"> | ||
+ | </div><!-- //footfiller --> | ||
+ | |||
+ | </div><!-- //content --> | ||
+ | |||
+ | </div><!-- //container --> | ||
+ | </body> | ||
+ | </html> |
Revision as of 22:58, 24 September 2012
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Último Tweet: ooooooooo ooooooooooooo ooooooo ooooooooooooo oooooooooooooo ooooooooooooooooo oooooooooo oooooooooooooo ooooooooooo ooooooo ooooooo ooooooo
Faltan
5
días para el #TSN7
¿Qué es?
Tech Startup Nights es un punto de encuentro para aquellos que tienen la inquietud de iniciar, ya tienen, trabajan o les interesa tener una empresa con un diferenciador tecnológico o innovador que permita un crecimiento acelerado.
El tercer jueves de cada mes, en punto de las 7:30 pm, en una ubicación previamente anunciada, nos juntaremos para conocernos,compartir experiencias y pasar un buen rato en compañía de otros con intereses similares a los nuestros.
Otros Tech Startup Nights
Estas son las empresas que han presentado en los diferentes Tech Startup Nights
Escríbenos
¿EN DÓNDE?
Bar del Hotel Brick
Orizaba esq. Tabasco, Col. Roma,
Del. Cuauhtémoc, México D. F.
E-mail : info@aventuracp.com.mx