Team:Sevilla/components

From 2011.igem.org

(Difference between revisions)
(Blanked the page)
 
(18 intermediate revisions not shown)
Line 1: Line 1:
-
{{:Team:Sevilla/template1}}
 
-
<html>
 
-
 
-
 
-
<!--===================================FOTOS================================================-->
 
-
 
-
<img src="http://dl.dropbox.com/u/4492644/ff.png" width="820" height="40" />
 
-
<div class="ejemplo_img">
 
-
<img src="https://static.igem.org/mediawiki/2011/5/51/ArcPablo.png" width="160" height="170" title="Provisional picture"/>
 
-
<div class="ejemplo_img_cont">
 
-
  <p style="text-align:center"><a href="#pablo">Pablo</a></p>
 
-
</div>
 
-
</div>
 
-
 
-
<div class="ejemplo_img">
 
-
<img src="https://static.igem.org/mediawiki/2011/2/20/ArcRoberto.png" width="160" height="170" title="Provisional picture"/>
 
-
<div class="ejemplo_img_cont">
 
-
  <p style="text-align:center"><a href="#roberto">Roberto</a></p>
 
-
</div>
 
-
</div>
 
-
 
-
<div class="ejemplo_img">
 
-
<img src="https://static.igem.org/mediawiki/2011/0/0e/ArcElena.png" width="160" height="170" title="Provisional picture"/>
 
-
<div class="ejemplo_img_cont">
 
-
  <p style="text-align:center;"><a href="#elena">Elena</a></p>
 
-
</div>
 
-
</div>
 
-
 
-
<div class="ejemplo_img">
 
-
<img src="https://static.igem.org/mediawiki/2011/0/0e/ArcElena.png" width="160" height="170" title="Provisional picture"/>
 
-
<div class="ejemplo_img_cont">
 
-
  <p style="text-align:center"><a href="#pedro">Pedro</a></p>
 
-
</div>
 
-
</div>
 
-
 
-
 
-
<script type="text/javascript">
 
-
$(document).ready(function(){
 
-
$(".ejemplo_img").mouseenter(function() {
 
-
$(".ejemplo_img_cont", this).stop().animate({ top:'130px' },{ queue:false, duration:300 });
 
-
});
 
-
$(".ejemplo_img").mouseleave(function() {
 
-
$(".ejemplo_img_cont", this).stop().animate({ top:'200px' },{ queue:false, duration:300 });
 
-
});
 
-
});
 
-
</script>
 
-
 
-
<style>
 
-
.ejemplo_img {
 
-
position:relative;
 
-
float:left;
 
-
width:160px;
 
-
height:170px;
 
-
border:2px inset #333;
 
-
overflow:hidden;
 
-
        margin-left:2px;
 
-
}
 
-
 
-
.ejemplo_img_cont {
 
-
float:left;
 
-
position:absolute;
 
-
background:#000;
 
-
height:60px;
 
-
line-height:25px;
 
-
width:160px;
 
-
padding:2px;
 
-
opacity:.8;
 
-
filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
 
-
-MS-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
 
-
top:170px;
 
-
left:0px;
 
-
color:#FFF;
 
-
font-size:18px;
 
-
font-family:"Lucida Grande", Arial, sans-serif;
 
-
z-index:10;
 
-
}
 
-
</style>
 
-
 
-
 
-
 
-
<!--===================================FOTO GRANDE================================================-->
 
-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.js"></script>
 
-
<script type="text/javascript" src="http://www.blueidea.com/articleimg/2006/03/3237/lightbox.js"></script>
 
-
 
-
<link rel="stylesheet" type="text/css" href="http://www.blueidea.com/articleimg/2006/03/3237/lightbox.css"  media="screen" />
 
-
 
-
<img src="http://dl.dropbox.com/u/4492644/twt.png"/>
 
-
 
-
<a href="https://static.igem.org/mediawiki/2011/5/53/ArcTeamRecorte.png" rel="lightbox" title="The whole team"><img src="https://static.igem.org/mediawiki/2011/e/ef/ArcTeam.jpg" width="600" height="400" style="clear:left;margin-top:4px; margin-bottom:4px;"/></a>
 
-
 
-
 
-
 
-
<!--===================================GRAFICA QUESITOS================================================-->
 
-
 
-
<img src="http://dl.dropbox.com/u/4492644/cp2.png" width="820" height="40" />
 
-
    <script type="text/javascript" src="http://www.google.com/jsapi"></script>
 
-
    <script type="text/javascript">
 
-
      google.load('visualization', '1', {packages: ['corechart']});
 
-
    </script>
 
-
    <script type="text/javascript">
 
-
      function drawVisualization() {
 
-
        // Create and populate the data table.
 
-
        var data = new google.visualization.DataTable();
 
-
        data.addColumn('string', 'Task');
 
-
        data.addColumn('number', 'Hours per Day');
 
-
        data.addRows(5); //las 5 divisiones
 
-
        data.setValue(0, 0, 'Biología');//el primero es el id, el segundo siempre 0 y el tercero la etiqueta
 
-
        data.setValue(0, 1, 2); //el primero es a que id corresponde, el segundo siempre es 1 y el tercero el valor
 
-
        data.setValue(1, 0, 'Biotecnología');
 
-
        data.setValue(1, 1, 4);
 
-
        data.setValue(2, 0, 'Ing Informática');
 
-
        data.setValue(2, 1, 2);
 
-
        data.setValue(3, 0, 'Bioquímica');
 
-
        data.setValue(3, 1, 2);
 
-
        data.setValue(4, 0, 'Otros');
 
-
        data.setValue(4, 1, 2);
 
-
     
 
-
        // Create and draw the visualization.
 
-
        new google.visualization.PieChart(document.getElementById('visualization')).
 
-
            draw(data, {title:"What do we study?"});
 
-
      }
 
-
     
 
-
 
-
      google.setOnLoadCallback(drawVisualization);
 
-
    </script>
 
-
 
-
 
 
-
    <div id="visualization" style="float:left;font-family: Arial;border: 0 none;width: 600px; height: 400px;"></div>
 
-
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
 
-
<img src="http://dl.dropbox.com/u/4492644/cp.png" />
 
-
</html>
 
-
 
-
 
-
 
-
<div id="elena">
 
-
=Elena Moreno=
 
-
</div>
 
-
 
-
 
-
Though I’ve always been considered a “science girl”, I can’t say my vocation was always Biotechnology. Actually, I didn’t even know of its existence until a year before starting the degree. Undecided between languages, medicine or maths, I eventually chose this new degree, which was apparently challenging and promised lots of further opportunities for research. And what a great discovery! I can’t help but admire how all the different scientific branches intertwine, right down to the deepest element to form a whole that works just like a programmed clock. I was far from imagining to what extent we have managed to gain control over nature on so many levels, especially taking into account how unpredictable, and downright powerful Mother Nature still proves to be. And what’s better is how fascinating and erratic she is even nowadays. As each new year in my degree goes by I keep changing mind about what to do in the future; I guess I may have to keep studying for the rest of my life...
 
-
 
-
[[Team:Elena Arcanum|Elena Arcanum]]
 
-
 
-
<div id="pedro">
 
-
=Pedro Victori=
 
-
</div>
 
-
 
-
 
-
One of the things I like the most about biology is how incredibly complex it is. And I don’t mean complex as in difficult to understand, but as in how vast the subject is. I’ve often thought how fascinating it must have been to be a scientist 100 years ago, or even 50 years ago, when all the great findings we now take for granted were still undiscovered. A thrilling thought, but also irrelevant as there are still innumerable discoveries waiting to be made by us. Even though we’re clarifying our basis of knowledge little by little - which means becoming more and more specialized - biology still offers a huge amount of challenges to undertake. I think that’s the reason I know researching biology is my vocation, the sheer size of the subject matter and something which occurred naturally – by chance - on our planet.
 
-
 
-
One of the most demanding areas nowadays is Synthetic Biology, using the intricacies of life systems for our own purpose. That’s why I harbour great expectations concerning the iGEM. A universal, standardised method of building biological circuits may represent the basis of an explosion of creativity in the field of synthetic biology. We’re about to live through a historical era, which seems to me even more exciting than the innovations made in molecular biology and genetic engineering during the last century.
 
-
 
-
I’m currently studying Biochemistry at the Faculty of Biology in the University of Seville, after having completed the first three years of a biology degree.
 
-
 
-
[[User:Pedrovictori|Pedro (Arcanum)]]
 
-
 
-
<div id="elena">
 
-
=Pablo Camino=
 
-
</div>
 
-
[[User:Pcamino|Pablo (Arcanum)]]
 

Latest revision as of 10:52, 27 June 2011