Team:Lambert GA/WIPHomePage

From 2014hs.igem.org

(Difference between revisions)
Line 13: Line 13:
desc none
desc none
</imagemap>
</imagemap>
 +
 +
 +
<head>
 +
<script type="text/javascript"></script>
 +
</head>
 +
<body>
 +
<form name="myform">
 +
  <input type="text" name="stage" size="20" />
 +
</form>
 +
<!-- Create  Mappings -->
 +
<img src="https://static.igem.org/mediawiki/2014hs/a/a4/Imagemaptest.png" alt="HTML Map"
 +
        border="0" usemap="#tutorials"/>
 +
 +
<map name="tutorials">
 +
  <area shape="poly"
 +
            coords="74,0,113,29,98,72,52,72,38,27"
 +
            href="/perl/index.htm" alt="Perl Tutorial"
 +
            target="_self"
 +
            onMouseOver="showTutorial('perl')"
 +
            onMouseOut="showTutorial('')"/>
 +
 +
  <area shape="rect"
 +
            coords="22,83,126,125"
 +
            href="/html/index.htm" alt="HTML Tutorial"
 +
            target="_self"
 +
            onMouseOver="showTutorial('html')"
 +
            onMouseOut="showTutorial('')"/>
 +
 +
  <area shape="circle"
 +
            coords="73,168,32"
 +
            href="/php/index.htm" alt="PHP Tutorial"
 +
        target="_self"
 +
            onMouseOver="showTutorial('php')"
 +
            onMouseOut="showTutorial('')"/>
 +
</map>
 +
</body>
 +
</html>

Revision as of 21:18, 29 May 2014

L ambert GA

Work in Progress of HomePage Development.


<imagemap> Image:https://static.igem.org/mediawiki/2014hs/a/a4/Imagemaptest.png|

rect 66 52 335 88 [[1]] rect 68 133 342 167 [[2]] rect 65 206 376 247 [[3]]

desc none </imagemap>


<head> <script type="text/javascript"></script> </head> <body> <form name="myform">

  <input type="text" name="stage" size="20" />

</form> <img src="Imagemaptest.png" alt="HTML Map"

       border="0" usemap="#tutorials"/>

<map name="tutorials">

  <area shape="poly" 
           coords="74,0,113,29,98,72,52,72,38,27"
           href="/perl/index.htm" alt="Perl Tutorial"
           target="_self" 
           onMouseOver="showTutorial('perl')" 
           onMouseOut="showTutorial()"/>
  <area shape="rect" 
           coords="22,83,126,125"
           href="/html/index.htm" alt="HTML Tutorial" 
           target="_self" 
           onMouseOver="showTutorial('html')" 
           onMouseOut="showTutorial()"/>
  <area shape="circle" 
           coords="73,168,32"
           href="/php/index.htm" alt="PHP Tutorial"

target="_self"

           onMouseOver="showTutorial('php')" 
           onMouseOut="showTutorial()"/>

</map> </body> </html>