Difference between revisions of "Team:Lambert GA/Template"

 
(337 intermediate revisions by 6 users not shown)
Line 1: Line 1:
 
<html>
 
<html>
 
<head>
 
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
 
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
 
<style>
 
.navbar {
 
    overflow: hidden;
 
    background-color: #333;
 
    font-family: Arial, Helvetica, sans-serif;
 
}
 
  
.navbar a {
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    float: left;
+
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
    font-size: 16px;
+
    color: white;
+
    text-align: center;
+
    padding: 14px 16px;
+
    text-decoration: none;
+
}
+
  
.dropdown {
+
<meta name="viewport" content="width=device-width, initial-scale=1">
    float: left;
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
    overflow: hidden;
+
}
+
  
.dropdown .dropbtn {
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
    font-size: 16px;   
+
<link href="https://fonts.googleapis.com/css?family=Questrial" rel="stylesheet">
    border: none;
+
    outline: none;
+
    color: white;
+
    padding: 14px 16px;
+
    background-color: inherit;
+
    font-family: inherit;
+
    margin: 0;
+
}
+
  
.navbar a:hover, .dropdown:hover .dropbtn {
 
    background-color: red;
 
}
 
  
.dropdown-content {
 
    display: none;
 
    position: absolute;
 
    background-color: #f9f9f9;
 
    min-width: 160px;
 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 
    z-index: 1;
 
}
 
  
.dropdown-content a {
+
<style>
    float: none;
+
    color: black;
+
    padding: 12px 16px;
+
    text-decoration: none;
+
    display: block;
+
    text-align: left;
+
}
+
  
.dropdown-content a:hover {
 
    background-color: #ddd;
 
}
 
 
.dropdown:hover .dropdown-content {
 
    display: block;
 
}
 
 
 
</style>
 
</head>
 
<body>
 
 
 
<div class="navbar">
 
<div style="width: 20%; float:left">
 
  <center><img src="https://wallpaperbrowse.com/media/images/soap-bubble-1958650_960_720.jpg" style="width:60px; margin-left: auto; margin-right: auto;" alt="Mountain View"></center>
 
</div>
 
<div style="width: 80%; float:right">
 
  <a href="#home">Home</a>
 
  <a href="#news">News</a>
 
  <div class="dropdown">
 
    <button class="dropbtn">Dropdown
 
      <i class="fa fa-caret-down"></i>
 
    </button>
 
    <div class="dropdown-content">
 
      <a href="#">Link 1</a>
 
      <a href="#">Link 2</a>
 
      <a href="#">Link 3</a>
 
    </div>
 
  </div>
 
</div>
 
</div>
 
</div>
 
 
 
</body>
 
</html>
 
 
<html>
 
<script>
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
 
$(document).ready(function() {
 
 
$("#HQ_page").attr('id','');
 
 
 
//highlight current page on the menu
 
highlight_current_page_menu();
 
 
//accessing submenus
 
$(".menu_item").click(function(){
 
$(".submenu_control_icon", this).toggleClass("open");
 
$(this).next(".submenu").fadeToggle(400);
 
});
 
 
//mobile menu access
 
$(".igem_2018_team_mobile_bar").click(function(){
 
$(this).next().toggleClass("displaying_menu");
 
});
 
 
});
 
 
 
function highlight_current_page_menu() {
 
 
var page_url="https://2018.igem.org/";
 
page_url = page_url + wgPageName;
 
$("a[href$='"+ page_url +"']").children().addClass("current_page");
 
 
//if the page is in a submenu, open the submenu and make the appropiate changes
 
if( $( ".current_page" ).hasClass( "submenu_item" )){
 
 
$(".current_page").parent().parent().fadeToggle(400);
 
$(".current_page").parent().parent().prev().addClass("current_page");
 
$(".menu_item.current_page > .submenu_control_icon").toggleClass("open");
 
 
}
 
}
 
 
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
</script>
 
 
 
<style>
 
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
  
Line 165: Line 36:
 
/* MENU */
 
/* MENU */
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
 
/*this wraps the whole of the menu*/
 
.igem_2018_team_menu {
 
background-color:#c4baba;
 
border-left: 1px solid #c4baba;
 
display:block;
 
float:right;
 
height:100vh;
 
max-width: 270px;
 
overflow-y: auto;
 
overflow-x: hidden;
 
padding:0px;
 
position:fixed;
 
right:0%;
 
text-align:left;
 
width: 15%;
 
}
 
 
 
.igem_2018_team_menu.displaying_menu{
 
display:block;
 
}
 
 
.igem_2018_team_menu  a {
 
color: #484848;
 
text-decoration:none;
 
}
 
 
.igem_2018_team_menu img {
 
width:100%;
 
}
 
 
 
.igem_2018_team_menu .menu_item {
 
    background-color: #c4baba;
 
    border-bottom: 1px solid #928b8b;
 
    clear: both;
 
color: #484848;
 
    cursor: pointer;
 
float: left;
 
    font-size: 120%;
 
    font-weight: bold;
 
    padding: 15px 0px 15px 5%;
 
  width: 100%;
 
}
 
 
.igem_2018_team_menu .menu_item.direct_link {
 
color: #484848;
 
padding-left: 15%;
 
}
 
.igem_2018_team_menu .menu_item:hover {
 
background-color: #ecb656;
 
}
 
 
 
.igem_2018_team_menu .menu_item .submenu_control_icon {
 
color: #484848;
 
float: left;
 
width: 10%;
 
}
 
 
/* submenu icon "+"  "-"*/
 
.igem_2018_team_menu .menu_item .submenu_control_icon::before {
 
content: "+";
 
}
 
 
/* submenu icon "+"  "-"*/
 
.igem_2018_team_menu .menu_item .submenu_control_icon.open::before {
 
content: "-";
 
}
 
 
/*submenu wrapper*/
 
.igem_2018_team_menu .submenu{
 
background-color: #e4dede;
 
clear:both;
 
display:none;
 
float: left; 
 
width:100%;
 
}
 
 
/*styling for a submenu item*/
 
.igem_2018_team_menu .submenu .submenu_item {
 
border-bottom: 1px solid #c4baba;
 
  color: #635d5d;
 
    height: 30px;
 
  float: left;
 
    font-size: 110%;
 
font-weight: bold;
 
    padding: 12px 0px 0px 15%;
 
    width: 100%;
 
}
 
 
.igem_2018_team_menu .submenu .submenu_item:hover {
 
background-color: #f3bd5d;
 
}
 
 
 
.igem_2018_team_menu .submenu .submenu_item.current_page,
 
.igem_2018_team_menu .menu_item.current_page,
 
.igem_2018_team_menu .menu_item.direct_link.current_page {
 
background-color:#7acbd8;
 
}
 
  
  
Line 272: Line 41:
 
/*mobile menu bar styling*/
 
/*mobile menu bar styling*/
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
 
 
.igem_2018_team_mobile_bar {
 
background-color:#e4dede;
 
border-bottom: 1px solid #c4baba;
 
cursor:pointer;
 
display:none;
 
float:left;
 
margin-top: 0;
 
padding: 5px 0;
 
position:fixed;
 
width:100%;
 
}
 
 
.igem_logo_mobile img {
 
width:70px;
 
}
 
 
.igem_logo_mobile {
 
float:left;
 
padding-left: 5%;
 
width: 30%;
 
}
 
 
.igem_menu_control_mobile img {
 
width:25px;
 
}
 
 
.igem_menu_control_mobile {
 
float:right;
 
padding-right:5%;
 
padding-top:5px;
 
text-align:right;
 
width: 30%;
 
}
 
 
  
  
Line 318: Line 51:
 
background-color:white;  
 
background-color:white;  
 
display:block;
 
display:block;
width: 87%;
+
width: 95%;
 
}
 
}
  
Line 324: Line 57:
 
.igem_2018_team_content .igem_2018_team_column_wrapper {
 
.igem_2018_team_content .igem_2018_team_column_wrapper {
 
margin:auto;
 
margin:auto;
max-width: 1400px;
+
 
width:90%;
 
width:90%;
 
}
 
}
Line 341: Line 74:
  
  
/* styling for the titles h1, h2*/
+
.igem_2018_team_content .igem_2018_team_column_wrapper h1, .igem_2018_team_content .igem_2018_team_column_wrapper h2 {
+
border-bottom:0px;
+
color: #635d5d;
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 10px 0px;
+
}
+
 
+
/* styling for the titles h3, h3, h5, h6 */
+
.igem_2018_team_content .igem_2018_team_column_wrapper h3,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h4,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h5,
+
.igem_2018_team_content .igem_2018_team_column_wrapper h6 {
+
border-bottom:0px;
+
color: #928b8b; 
+
font-family: "Arial Black", Gadget, sans-serif;
+
padding: 5px 0px;
+
}
+
 
+
/* text */
+
.igem_2018_team_content .igem_2018_team_column_wrapper p {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding: 5px 0px;
+
text-align: left;
+
color: #484848;
+
}
+
  
 
/* Links */
 
/* Links */
Line 381: Line 88:
 
-o-transition: all 0.4s ease;  
 
-o-transition: all 0.4s ease;  
 
}
 
}
 +
  
 
/* hover for the links */
 
/* hover for the links */
Line 418: Line 126:
  
  
/* non numbered lists */
+
.igem_2018_team_content .igem_2018_team_column_wrapper ul, .igem_2018_team_content .igem_2018_team_column_wrapper ol {
+
font-size: 130%;
+
font-family: Arial, Helvetica, sans-serif;
+
padding:0px 20px;
+
}
+
  
  
Line 437: Line 140:
 
/*layout classes*/
 
/*layout classes*/
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
 +
#subheading1 {
 +
font-size: 36px;
 +
font-family: 'Montserrat', sans-serif;
 +
line-height: 1.3em;
 +
}
  
/*main layout class */
+
#subheading2 {
.igem_2018_team_content .igem_2018_team_column_wrapper .column  {  
+
font-size: 36px;
float:left;
+
font-family: 'Montserrat', sans-serif;
margin: 1% 2%;
+
line-height: 1.3em;
padding: 0px;
+
}
+
  
/* 100% */
+
}
.igem_2018_team_content .igem_2018_team_column_wrapper .column.full_size { width:96%; }
+
#subheading3 {
 
+
font-size: 36px;
/* 66% */
+
font-family: 'Montserrat', sans-serif;
.igem_2018_team_content .igem_2018_team_column_wrapper .column.two_thirds_size { width: 62.6%; }
+
line-height: 1.3em;
 
+
}
/* 33% */
+
#subheading4 {
.igem_2018_team_content .igem_2018_team_column_wrapper .column.third_size { width: 29.3%; }
+
font-size: 36px;
 +
font-family: 'Montserrat', sans-serif;
 +
line-height: 1.3em;
 +
}
 +
#subheading5 {
 +
font-size: 36px;
 +
font-family: 'Montserrat', sans-serif;
 +
line-height: 1.3em;
 +
}
 +
  
  
Line 593: Line 308:
  
  
 +
html {
 +
    font-family: 'Questrial', sans-serif;
 +
}
  
 +
p {
 +
  font-family: 'Questrial', sans-serif;
  
 +
}
  
</style>
 
  
 +
.navbar {
 +
    background-color: #FFFFFF;
 +
    font-family: 'Questrial', sans-serif;
 +
    height: 47px;
 +
    position:fixed;/* Set the navbar to fixed position */
 +
    width: 100%; /* Full width */
 +
    z-index: 4000;
 +
}
  
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
.navbar a {
<!--- THIS IS WHERE THE HTML BEGINS --->
+
    font-size: 13px;
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
    color: #000000;
 +
    text-align: center;
 +
    padding: 14px 16px;
 +
    text-decoration: none;
 +
font-family: 'Questrial', sans-serif;
 +
cursor: pointer;
 +
-o-transition:color .4s ease-out, background .4s ease-in;
 +
  -ms-transition:color .4s ease-out, background .4s ease-in;
 +
  -moz-transition:color .4s ease-out, background .4s ease-in;
 +
  -webkit-transition:color .4s ease-out, background .4s ease-in;
 +
  transition:color .4s ease-out, background .4s ease-in;
 +
}
  
<head>
+
.navbar a:hover {
 +
color: #0077be;
  
<!-- This tells the browser that your page is responsive -->
+
<!-- color was #6DBBF7 -->
<meta name="viewport" content="width=device-width, initial-scale=1">
+
}
  
</head>
+
.dropdown {
 +
    float: right;
 +
    overflow: hidden;
 +
}
  
 +
.dropdown .dropbtn {
 +
    font-size: 13px;   
 +
    border: none;
 +
    outline: none;
 +
    color: #000000;
 +
    padding: 14px 16px;
 +
    background-color: inherit;
 +
    font-family: inherit;
 +
    margin: 0;
 +
cursor: pointer;
 +
-o-transition:color .4s ease-out, background .4s ease-in;
 +
  -ms-transition:color .4s ease-out, background .4s ease-in;
 +
  -moz-transition:color .4s ease-out, background .4s ease-in;
 +
  -webkit-transition:color .4s ease-out, background .4s ease-in;
 +
  transition:color .4s ease-out, background .4s ease-in;
 +
}
  
 +
.navbar a:hover {
 +
    color: #0077be;
 +
   
  
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
}
<!--- Menu --->
+
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
+
  
 +
.dropdown:hover .dropbtn {
 +
    color: #0077be;
 +
    background-color: white;
 +
   
 +
}
  
 +
.dropdown-content {
 +
    display: none;
 +
    position: absolute;
 +
    min-width: 160px;
 +
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 +
    z-index: 4000;
 +
    background-color: white;
 +
}
  
 +
.dropdown-content a {
 +
    float: none;
 +
    color: #000000;
 +
    padding: 14px 16px;
 +
    text-decoration: none;
 +
    display: block;
 +
    text-align: left;
 +
    background-color: white;
  
<div class="igem_2018_team_mobile_bar">
 
 
<div class="igem_logo_mobile">
 
<img src="https://static.igem.org/mediawiki/2018/4/4f/2018_igem_mobile_menu_logo.svg">
 
</div>
 
  
 +
}
  
<div class="igem_menu_control_mobile">
+
.dropdown-content a:hover {
<img id="menu_control_image" src="https://static.igem.org/mediawiki/igem.org/3/3b/Menu_icon.svg">
+
    background-color: #F0F0F0;
 +
    opacity: 1;
 +
 
 +
}
 +
 
 +
.dropdown:hover .dropdown-content {
 +
    display: block;
 +
    opacity: 1;
 +
  transition: opacity 1.5s ease-in-out;
 +
  -moz-transition: opacity 1.5s ease-in-out;
 +
  -webkit-transition: opacity 1.5s ease-in-out;
 +
   
 +
   
 +
}
 +
 
 +
 
 +
#logo {
 +
width: 160px;
 +
}
 +
.rightmove {
 +
position: absolute;
 +
right: 7%;
 +
}
 +
.leftmove {
 +
position: absolute;
 +
left: 1%;
 +
}
 +
 
 +
 
 +
</style>
 +
</head>
 +
<body>
 +
 
 +
<div class="navbar">
 +
<div style="width: 20%; float:left" class="leftmove">
 +
  <a href="https://2018.igem.org/Team:Lambert_GA"><img style="padding: 0 0;" src="https://static.igem.org/mediawiki/2018/2/2d/T--Lambert_GA--Captivate.png" id="logo"/></a>
 
</div>
 
</div>
 +
<div style="width: 80%; float:right;" class="rightmove">
  
</div>
 
  
 +
        <div class="dropdown">
 +
<a style = "padding: 0px; margin:0px;" href="https://igem.org/2018_Judging_Form?team=Lambert_GA"><button class="dropbtn">JUDGING FORM
 +
</button></a>
 +
      </div>
  
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Model">
 +
        <button class="dropbtn">MODELING
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/CALM_MODEL">CALM</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/EPEN_MODEL_RESULTS">ELECTROPEN</a>
 +
            </div> 
 +
        </div>
  
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Software">
 +
        <button class="dropbtn">CALM
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
     
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/CALM_BACKGROUND_SOLUTION">BACKGROUND</a>
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/CALM_METHODS">DATA & METHODS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/CALM_RESULTS">RESULTS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/CALM_DISCUSSION">DISCUSSION</a>   
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/COLOR-Q">COLOR Q</a>
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/CALM_SUPPLEMENTARY">SUPPLEMENTARY</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/CALM_REFERENCES">REFERENCES</a>
 +
            </div> 
 +
        </div>
  
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Measurement">
 +
        <button class="dropbtn">QSYSTEM
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/COLOR-Q">COLOR Q</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/CHROME-Q">CHROME Q</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/MEASUREMENT_REFERENCES">REFERENCES</a>
 +
            </div> 
 +
        </div>
 +
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Hardware">
 +
        <button class="dropbtn">ELECTROPEN                       
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Applied_Design">PRINCIPLES &amp; DESIGN</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/EPEN_MODEL_RESULTS">MODEL &amp; THEORY</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Entrepreneurship">PRODUCT DESIGN</a>
 +
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/ELECTROPEN_REFERENCES">REFERENCES</a>
 +
            </div> 
 +
        </div>
 +
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Human_Practices">
 +
        <button class="dropbtn">HUMAN PRACTICES
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Human_Practices_Overview">INTEGRATED HUMAN PRACTICES</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Public_Engagement">EDUCATION &amp; ENGAGEMENT</a>
 +
                <a href="https://2018.igem.org/Team:Lambert_GA/Collaborations">COLLABORATIONS</a>
 +
            </div>
 +
        </div>
 +
   
 +
<div class="dropdown">
 +
                        <form action="https://2018.igem.org/Team:Lambert_GA/Safety">
 +
                        <button class="dropbtn">SAFETY</button>   
 +
</form>
 +
                        <div class="dropdown-content">
 +
      <!--<a href="https://2018.igem.org/Team:Lambert_GA/Safety">OVERVIEW</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/BIOSENSOR_CELLS">BIOSENSOR CELLS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/ELECTROPEN_SAFETY">ELECTROPEN</a>
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/CHOLERA_SAFETY">NO CHOLERA IN SCHOOL</a>-->
 +
     
 +
            </div>
 +
                </div> 
 +
 +
         
 +
<div class="dropdown">
 +
                                          <form action="https://2018.igem.org/Team:Lambert_GA/Parts">
 +
        <button class="dropbtn">PARTS
 +
            </button>
 +
</form>
 +
            <div class="dropdown-content">
 +
                    <a href="https://2018.igem.org/Team:Lambert_GA/Basic_Part">BASIC PARTS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Composite_Part">COMPOSITE PARTS</a>
 +
     
 +
            </div>
 +
        </div>
 +
 +
 +
<div class="dropdown">
 +
                      <form action="https://2018.igem.org/Team:Lambert_GA/ProjectOverview">
 +
    <button class="dropbtn">PROJECT
 +
    </button>
 +
</form>
 +
    <div class="dropdown-content">
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Description">DESCRIPTION</a>
 +
                                <a href="https://2018.igem.org/Team:Lambert_GA/Cholera_Background">BACKGROUND</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Design">DESIGN</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Experiments">EXPERIMENTS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Notebook">LAB NOTEBOOK</a> 
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/InterLab">INTERLAB</a> 
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Results">RESULTS</a> 
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Demonstrate">DEMONSTRATE</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Improve">THE VISION</a>
 +
 +
</div>
 +
</div>
 +
 +
<div class="dropdown">
 +
<form action="https://2018.igem.org/Team:Lambert_GA/Team">
 +
        <button class="dropbtn">TEAM
 +
    </button>
 +
</form>
 +
            <div class = "dropdown-content">
 +
            <a href="https://2018.igem.org/Team:Lambert_GA/Team">TEAM MEMBERS</a>
 +
      <a href="https://2018.igem.org/Team:Lambert_GA/Attributions">ATTRIBUTIONS</a> 
 +
            </div>
 +
        </div>
 +
 +
 +
</div>
 
</div>
 
</div>
 +
 +
 +
</body>
 +
  
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!--- Content of the page  --->
+
<!--- THIS IS WHERE THE HTML BEGINS --->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<head>
  
 +
<!-- This tells the browser that your page is responsive -->
 +
<meta name="viewport" content="width=device-width, initial-scale=1">
  
<div class="igem_2018_team_content">
+
</head>
<div class="igem_2018_team_column_wrapper">
+
 
<div class="clear extra_space"></div>
+
</html>
<div class="clear extra_space"></div>
+

Latest revision as of 02:30, 18 October 2018