Difference between revisions of "Team:CMUQ/team"

 
(210 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
<html>
 
<html>
  
<script>
+
<meta name="viewport" content="width=device-width, initial-scale=1">
  
// This is the jquery part of your template.
+
    <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
// Try not modify any of this code too much since it makes your menu work.
+
  
$(document).ready(function() {
+
    <link href="//2015.igem.org/Team:Oxford/Assets/Bootstrap?action=raw&ctype=text/css" rel="stylesheet">
 +
    <link href="//2015.igem.org/Team:Oxford/Assets/stylesheet?action=raw&ctype=text/css" rel="stylesheet">
 +
    <link rel="stylesheet" href="//2015.igem.org/Team:Oxford/Assets/Font-Awesome?action=raw&ctype=text/css">
 +
    <script type="text/javascript" src="//2015.igem.org/Team:Oxford/Assets/Bootstrapj?action=raw&ctype=text/javascript"></script>
 +
    <script type="text/javascript" src="//2015.igem.org/Team:Oxford/Assets/contents?action=raw&ctype=text/javascript"></script>
  
$("#HQ_page").attr('id','');
+
    <script src="https://2015.igem.org/common/MathJax-2.5-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
  
// call the functions that control the menu
+
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css'>
menu_functionality();
+
hide_show_menu();
+
  
 +
<!-- Latest compiled and minified CSS -->
 +
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
  
 +
<style>
 +
.card {
 +
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
 +
    transition: 0.3s;
 +
    width: 20%;
 +
    background-color: white;
 +
    border-radius: 5px;
 +
  float: left;
 +
}
  
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
+
.card:hover {
function menu_functionality() {
+
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
 +
}
  
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
+
img {
$(".menu_button").click(function(){
+
   
 +
    border-radius: 50%;
 +
}
  
// add or remove the class "open" , this class holds the "-"
+
.container {
$(this).children().toggleClass("open");
+
    padding: 2px 16px;
// show or hide the submenu
+
$(this).next('.submenu_wrapper').fadeToggle(400);
+
});
+
  
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
+
}
$("#display_menu_control").click(function(){
+
$('#menu_content').fadeToggle(400);
+
});
+
  
// call the current page highlight function
 
highlight_current_page();
 
}
 
  
  
// call the highlight current page function to show it on the menu with a different background color
+
body, html {
function highlight_current_page() {
+
    height: 100%;
 +
}
  
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
+
.main{
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
+
    /* The image used */
 +
    background-image: url('https://static.igem.org/mediawiki/2017/a/ac/MG_8285-XL.jpg');
  
// now that the current_page class has been added to a menu item, make the submenu fade in
+
    /* Full height */
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
+
    height: 800px;
// change the +/- symbol of the corresponding menu button
+
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
+
+
}
+
  
 +
    /* Create the parallax scrolling effect */
 +
    background-attachment: fixed;
 +
    background-position: center;
 +
    background-repeat: no-repeat;
 +
    background-size: cover;
 +
   
 +
  opacity: 0.9;
 +
   
 +
}
  
 +
.centered {
 +
    position: absolute;
 +
    top: 200px;
 +
    left: 370px;
  
// allow button on the black menu bar to show/hide the side menu
+
  color: white;
function hide_show_menu() {
+
}
+
// in case you preview mode is selected, the menu is hidden for better visibility
+
if (window.location.href.indexOf("submit") >= 0) {
+
$(".igem_2017_menu_wrapper").hide();
+
}
+
  
// if the black menu bar has been loaded
 
  if (document.getElementById('bars_item')) {
 
  
// when the "bars_item" has been clicked
 
$("#bars_item").click(function() {
 
$("#sideMenu").hide();
 
  
// show/hide the menu wrapper
+
.division{
$(".igem_2017_menu_wrapper").fadeToggle("100");
+
    font-family: 'Raleway', sans-serif;
});
+
    height:20%;  
  }
+
    background-color:#E7F3F3;
 +
    border: 30px solid #E7F3F3; 
  
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
+
   
else {
+
}
    setTimeout(hide_show_menu, 15);
+
html {
}
+
font-size: 13px;
 
}
 
}
 +
h1 {
 +
font-size: 8rem;
 +
position: absolute;
 +
}
 +
h2 {
 +
font-size: 2rem;
 +
position: absolute;
 +
}
 +
p {
 +
font-size: 1rem;
 +
word-wrap: break-word;
 +
word-break: keep-all;
 +
}
 +
  
  
});
+
@media screen and (min-width: 500px){
 +
  html{
 +
    font-size: 14px;
 +
  }
 +
}
 +
@media screen and (min-width: 570px){
 +
  html{
 +
    font-size: 15px;
 +
  }
 +
}
 +
@media screen and (min-width: 620px){
 +
  html{
 +
    font-size: 16px;
 +
  }
 +
}
 +
@media screen and (min-width: 680px){
 +
  html{
 +
    font-size: 17px;
 +
  }
 +
}
 +
@media screen and (min-width: 720px){
 +
  html{
 +
    font-size: 18px;
 +
  }
 +
}
 +
@media screen and (min-width: 800px){
 +
  html{
 +
    font-size: 19px;
 +
  }
 +
}
 +
@media screen and (min-width: 860px){
 +
  html{
 +
    font-size: 20px;
 +
  }
 +
}
 +
@media screen and (min-width: 920px){
 +
  html{
 +
    font-size: 21px;
 +
  }
 +
}
 +
@media screen and (min-width: 1000px){
 +
  html{
 +
    font-size: 22px;
 +
  }
 +
}    
  
 +
            /* Collapsing Navbar Styles */
  
</script>
+
    @media(min-width:768px) {
 
+
      .navbar-default {
 
+
        -webkit-transition: all .35s;
 
+
        -moz-transition: all .35s;
 
+
        transition: all .35s;
 
+
        padding: 15px 0;
<style>
+
        background-color: transparent;
 +
                border-width: 0px;
  
 +
        /* Add additional styles here for the UNCOLLAPSED state */
 +
      }
 +
      .navbar-default.affix {
 +
        padding: 0;
 +
        background-color: white;
 +
        /* Add additional styles here for the COLLAPSED state */
 +
      }
 +
    }
 +
    .navbar.navbar-default.navbar-fixed-top a {
 +
    color: black;
 +
    font-size: 15px;
 +
                font-family: 'Montserrat', sans-serif;
  
 +
    }
  
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
 
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
Line 105: Line 186:
 
 
 
 
 
/**************************************************************** MENU ***************************************************************/
 
/* Wrapper for the menu */
 
.igem_2017_menu_wrapper {
 
width: 15%;
 
height:100vh;
 
position:fixed;
 
right:0%;
 
padding:0px;
 
float:right;
 
border-left: 1px solid #d3d3d3;
 
background-color:#dddddd;
 
text-align:left;
 
font-family:Tahoma, Geneva, sans-serif;
 
overflow-y: auto;
 
overflow-x: hidden;
 
}
 
 
/* this hides the scrollbar to keep view consistency */
 
.igem_2017_menu_wrappe::-webkit-scrollbar {
 
display: none;
 
}
 
 
 
/* styling for links in the menu, removes the line under text */
 
.igem_2017_menu_wrapper a { 
 
text-decoration: none;
 
}
 
 
 
/* styling for the images in the menu */
 
.igem_2017_menu_wrapper img {
 
width: 100%;
 
}
 
 
/* styling for the menu buttons */
 
.igem_2017_menu_wrapper .menu_button {
 
width: 100%;
 
padding: 10px 0px 10px 15px;
 
float:left;
 
border-bottom: 1px solid #d3d3d3;
 
font-size: 12px;
 
font-weight: bold;
 
color: #5e5f5f;
 
cursor: pointer;
 
}
 
 
 
.igem_2017_menu_wrapper .menu_bottom_padding {
 
width: 100%;
 
height: 30px;
 
float:left;
 
}
 
 
.menu_button.direct_to_page {
 
padding-left: 36px;
 
}
 
 
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
 
width:10%;
 
float:left;
 
}
 
 
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
 
content: "+"; 
 
}
 
 
.open::before {
 
content: "-" !important; 
 
}
 
 
 
 
/* styling for the menu buttons on hover */
 
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {
 
background-color: #3399ff;
 
text-decoration: none;
 
color:#ffffff;
 
}
 
 
/* styling for the menu button when it is the current page */
 
.current_page {
 
background-color:#7fc1f7  !important;
 
color:#5e5f5f !important;
 
}
 
 
 
/* styling for the submenu buttons */
 
.igem_2017_menu_wrapper .submenu_button {
 
width: 100%;
 
padding: 10px 0px 10px 34px;
 
float:left;
 
background-color:#f2f2f2;
 
border-bottom: 1px solid #d3d3d3;
 
font-size: 12px;
 
color: #5e5f5f;
 
cursor: pointer;
 
}
 
 
/* wrapper for the submenu items, they are hidden by default*/
 
.igem_2017_menu_wrapper .submenu_wrapper {
 
display:none;
 
}
 
 
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
 
.igem_2017_menu_wrapper #display_menu_control {
 
display:none;
 
text-align:center;
 
}
 
 
 
  
Line 437: Line 408:
 
 
 
 
/* special class that the system uses to make sure the team wants a page to be evaluated */
+
.judges-will-not-evaluate {
+
    width: 96.6%;
+
  margin: 5px 15px;
+
  display: block;
+
border: 4px solid #3399ff;
+
    font-weight: bold;
+
}
+
 
 
 
</style>
 
</style>
Line 459: Line 423:
  
 
</head>
 
</head>
 +
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
 +
    <div class="container">
 +
      <!-- Brand and toggle get grouped for better mobile display -->
 +
      <div class="navbar-header">
 +
        <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
 +
          <span class="sr-only">Toggle navigation</span>
 +
          <span class="icon-bar"></span>
 +
          <span class="icon-bar"></span>
 +
          <span class="icon-bar"></span>
 +
        </button>
 +
        <a class="navbar-brand" href="https://2017.igem.org/Team:CMUQ" >CMUQ</a>
 +
      </div>
  
 +
      <!-- Collect the nav links, forms, and other content for toggling -->
 +
      <div class="collapse navbar-collapse" id= "expand">
 +
        <ul class="nav navbar-nav navbar-right">
 +
            <li class="dropdown">
 +
                <a class="dropdown-toggle" data-toggle="dropdown" href="#">PROJECT <span class="caret"> </span></a>
 +
                <ul class="dropdown-menu">
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/descritpion">Description</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/design">Design</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/safety">Safety</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/Demonstrate">Demonstrate</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/Model">Model</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/Collaborations">Collaborations</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/achievments">Achievements</a></li>
 +
                </ul>
 +
            </li>
 +
            <li class="dropdown">
 +
                <a class="dropdown-toggle" data-toggle="dropdown" href="#"> PRACTICES <span class="caret"> </span></a>
 +
                <ul class="dropdown-menu">
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/humanpractices">Human Practices</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/HP/Silver"> Silver HP </a></li>
 +
                </ul>
 +
            </li>
 +
            <li class="dropdown">
 +
                <a class="dropdown-toggle" data-toggle="dropdown" href="#"> WET LAB <span class="caret"> </span></a>
 +
                <ul class="dropdown-menu">
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/results">Overview & Results</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/notebook">Notebook</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/protocols">Protocols</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/InterLab">InterLab</a></li>
 +
                </ul>
 +
            </li>
 +
            <li class="dropdown">
 +
                <a class="dropdown-toggle" data-toggle="dropdown" href="#">DRY LAB<span class="caret"> </span></a>
 +
                <ul class="dropdown-menu">
 +
                    <li><a href="https://2017.igem.org/Team:CMUQ/modelling">Modelling</a></li>
 +
                </ul>
 +
            </li>
 +
            <li class="dropdown">
 +
                <a class="dropdown-toggle" data-toggle="dropdown" href="#"> TEAM <span class="caret"> </span></a>
 +
                <ul class="dropdown-menu">
 +
                    <li><a href="https://2017.igem.org/Team:CMUQ/team">Team</a></li>
 +
                            <li><a href="https://2017.igem.org/Team:CMUQ/attributions">Attributions</a></li>
 +
                </ul>
 +
            </li>
 +
            <li><a href="https://2017.igem.org/Team:CMUQ/gallery">GALLERY</a></li>
 +
           
 +
        </ul>
 +
      </div>
 +
      <!-- /.navbar-collapse -->
 +
    </div>
 +
    <!-- /.container -->
 +
  </nav>
  
  
<div class="igem_2017_menu_wrapper" >
 
  
 +
<body>
  
 +
<div class="main">
 +
<div class="centered"> <h1>Team </h1> </div>
 +
</div>
  
<a href="https://2017.igem.org/Team:Example2">
+
<div class="division">
<img src="http://placehold.it/350x150">
+
  <img src="https://static.igem.org/mediawiki/2017/d/d3/DrVincent.jpg"  style="width:25%; padding-right: 20px;border-radius: 50%; float:left; " >
</a>
+
  <p style="text-align:center; font-size: 190%;font-family: 'Raleway', sans-serif;">
 +
        "Bacteria, the only culture some people have"
 +
    </p>   
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; padding-left: 20px;"> Name: Dina Nayel </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; "> Major: Biological Sciences</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;">Age: 19 </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Nationality: Jordanian</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses. </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; ">Field of Interest: Genetics, marine biology and ecology. </p>
 +
<div class="container">
 +
</div>
 +
</div>
 +
<div class="division" >
 +
  <img src="https://static.igem.org/mediawiki/2017/7/76/Saad.jpeg"  style="width:25%; padding-right: 20px;border-radius: 50%; float:left;" >
 +
  <p style="text-align:center; font-size: 190%;font-family: 'Raleway', sans-serif;">
 +
        "Bacteria, the only culture some people have"
 +
    </p>   
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; padding-left: 20px;"> Name: Dina Nayel </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; "> Major: Biological Sciences</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;">Age: 19 </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Nationality: Jordanian</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses. </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; ">Field of Interest: Genetics, marine biology and ecology. </p>
 +
<div class="container">
 +
</div>
 +
</div>
 +
<div class="division">
 +
  <img src="https://static.igem.org/mediawiki/2017/3/36/Dina_Nayel.jpg"  style="width:25%; padding-right: 20px;border-radius: 50%; float:left;" >
 +
  <p style="text-align:center; font-size: 190%;font-family: 'Raleway', sans-serif;">
 +
        "Bacteria, the only culture some people have"
 +
    </p>   
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; padding-left: 20px;"> Name: Dina Nayel </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; "> Major: Biological Sciences</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;">Age: 19 </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Nationality: Jordanian</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses. </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; ">Field of Interest: Genetics, marine biology and ecology. </p>
 +
<div class="container">
 +
</div>
 +
</div>
 +
<div class="division">
 +
  <img src="https://static.igem.org/mediawiki/2017/3/38/Aisha.jpeg"  style="width:25%; padding-right: 20px;border-radius: 50%; float:left;" >
 +
  <p style="text-align:center; font-size: 190%;font-family: 'Raleway', sans-serif;">
 +
        "Bacteria, the only culture some people have"
 +
    </p>   
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; padding-left: 20px;"> Name: Dina Nayel </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; "> Major: Biological Sciences</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;">Age: 19 </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Nationality: Jordanian</p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%;  ">Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses. </p>
 +
<p style="font-family: 'Raleway', sans-serif;font-size: 105%; ">Field of Interest: Genetics, marine biology and ecology. </p>
 +
<div class="container">
 +
</div>
 +
</div>
  
  
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
 
<div class="menu_button" id="display_menu_control">
 
MENU 
 
</div>
 
  
<div id="menu_content">
 
 
  
  
  
<a href="https://2017.igem.org/Team:Example2">
 
<div class="menu_button direct_to_page">
 
HOME
 
</div>
 
</a>
 
  
  
  
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> TEAM
 
</div>
 
  
<div class="submenu_wrapper" id="team_submenu">
 
 
<a href="https://2017.igem.org/Team:Example2/Team">
 
<div class="submenu_button" id="Team_page">
 
Team
 
</div>
 
</a>
 
  
<a href="https://2017.igem.org/Team:Example2/Collaborations">
 
<div class="submenu_button"  id="Collaborations_page">
 
Collaborations
 
</div>
 
</a>
 
 
 
</div>
 
 
 
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PROJECT
 
</div>
 
 
<!-- project submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Example2/Description">
 
<div class="submenu_button"  id="Description_page">
 
Description
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Design">
 
<div class="submenu_button"  id="Design_page">
 
Design
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Experiments">
 
<div class="submenu_button"  id="Experiments_page">
 
Experiments
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Example2/Notebook">
 
<div class="submenu_button"  id="Notebook_page">
 
Notebook
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/InterLab">
 
<div class="submenu_button"  id="InterLab_page">
 
InterLab
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Contribution">
 
<div class="submenu_button"  id="Contribution_page">
 
Contribution
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Model">
 
<div class="submenu_button"  id="Model_page">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Results">
 
<div class="submenu_button"  id="Results_page">
 
Results
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Example2/Demonstrate">
 
<div class="submenu_button"  id="Demonstrate_page">
 
Demonstrate
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Improve">
 
<div class="submenu_button"  id="Improve_page">
 
Improve
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Attributions">
 
<div class="submenu_button"  id="Attributions_page">
 
Attributions
 
</div>
 
</a>
 
 
</div>
 
 
 
 
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> PARTS
 
</div>
 
 
<!-- parts submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Example2/Parts">
 
<div class="submenu_button"  id="Parts_page">
 
Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Basic_Part">
 
<div class="submenu_button"  id="Basic_Part_page">
 
Basic Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Composite_Part">
 
<div class="submenu_button"  id="Composite_Part_page">
 
Composite Parts
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Part_Collection">
 
<div class="submenu_button"  id="Part_Collection_page">
 
Part Collection
 
</div>
 
</a>
 
</div>
 
 
 
 
 
 
 
<a href="https://2017.igem.org/Team:Example2/Safety">
 
<div class="menu_button direct_to_page">
 
SAFETY
 
</div>
 
</a>
 
 
 
 
 
 
 
 
<div class="menu_button" >
 
<div class="expand_collapse_icon">  </div> HUMAN PRACTICES
 
</div>
 
 
<!-- human practices submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Example2/HP/Silver">
 
<div class="submenu_button"  id="Silver_page">
 
Silver HP
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/HP/Gold_Integrated">
 
<div class="submenu_button" id="Gold_Integrated_page">
 
Integrated and Gold
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Example2/Engagement">
 
<div class="submenu_button"  id="Engagement_page">
 
Public Engagement
 
</div>
 
</a>
 
 
</div>
 
 
 
<div class="menu_button">
 
<div class="expand_collapse_icon">  </div> AWARDS
 
</div>
 
 
<!-- awards submenu -->
 
<div class="submenu_wrapper">
 
 
<a href="https://2017.igem.org/Team:Example2/Applied_Design">
 
<div class="submenu_button"  id="Applied_Design_page">
 
Applied Design
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Entrepreneurship">
 
<div class="submenu_button"  id="Entrepreneurship_page">
 
Entrepreneurship
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Hardware">
 
<div class="submenu_button"  id="Hardware_page">
 
Hardware
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Measurement">
 
<div class="submenu_button"  id="Measurement_page">
 
Measurement
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Model">
 
<div class="submenu_button"  id="Model_page">
 
Model
 
</div>
 
</a>
 
 
<a href="https://2017.igem.org/Team:Example2/Plant">
 
<div class="submenu_button"  id="Plant_page">
 
Plant
 
</div>
 
</a>
 
 
 
<a href="https://2017.igem.org/Team:Example2/Software">
 
<div class="submenu_button"  id="Software_page">
 
Software
 
</div>
 
</a>
 
 
</div>
 
 
<a href="https://igem.org/2017_Judging_Form?team=Example2">
 
<div class="menu_button direct_to_page">
 
JUDGING FORM
 
</div>
 
</a>
 
 
 
 
<div class="menu_bottom_padding" >
 
</div>
 
 
</div>
 
 
 
 
 
</div>
 
  
 +
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
 +
<script src='http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js'></script>
 +
<script type="text/javascript">
 +
// Initialize affix and add an offset to add affix class on scroll
 +
$('#mainNav').affix({
 +
  offset: {
 +
    top: 100
 +
  }
 +
})
 +
</script>
  
 +
<!-- Latest compiled and minified JavaScript -->
 +
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
 +
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  
<!-- start of content -->
+
</body>
<div class="igem_2017_content_wrapper">
+
</html>
<h1>Example2</h1>
+

Latest revision as of 04:59, 25 October 2017

Team

"Bacteria, the only culture some people have"

Name: Dina Nayel

Major: Biological Sciences

Age: 19

Nationality: Jordanian

Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses.

Field of Interest: Genetics, marine biology and ecology.

"Bacteria, the only culture some people have"

Name: Dina Nayel

Major: Biological Sciences

Age: 19

Nationality: Jordanian

Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses.

Field of Interest: Genetics, marine biology and ecology.

"Bacteria, the only culture some people have"

Name: Dina Nayel

Major: Biological Sciences

Age: 19

Nationality: Jordanian

Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses.

Field of Interest: Genetics, marine biology and ecology.

"Bacteria, the only culture some people have"

Name: Dina Nayel

Major: Biological Sciences

Age: 19

Nationality: Jordanian

Hobbies: Aimless wanderings of her mind as well as her feet, take her to places far away from home. She lives for moments like abseiling in Oman and getting lost in a trail in Frick forest, catching sunrise on her bike and riding horses.

Field of Interest: Genetics, marine biology and ecology.