Formatting
This commit is contained in:
parent
c110336ab1
commit
51120ac303
1 changed files with 48 additions and 31 deletions
79
index.htm
79
index.htm
|
@ -1,42 +1,59 @@
|
||||||
<html><script>
|
<html>
|
||||||
function expand() {document.getElementById("bar").style.height = "100%";}
|
<script>
|
||||||
function collapse() {document.getElementById("bar").style.height = "0px"; }
|
function expand() { document.getElementById("bar").style.height = "100%"; }
|
||||||
function myFunction() {
|
function collapse() { document.getElementById("bar").style.height = "0px"; }
|
||||||
if (document.getElementById('bar').clientHeight == 0) { expand();}
|
function myFunction() {
|
||||||
else { collapse();}
|
if (document.getElementById('bar').clientHeight == 0) { expand(); }
|
||||||
}
|
else { collapse(); }
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<LINK href="style.css" rel="stylesheet" type="text/css">
|
<LINK href="style.css" rel="stylesheet" type="text/css">
|
||||||
<title>TC Automotives</title><style>
|
<title>TC Automotives</title>
|
||||||
#b1:hover { background-image:url("resources/car.png");}
|
|
||||||
#b2:hover { background-image:url("resources/sketch.png");}
|
<style>
|
||||||
#b3:hover { background-image:url("resources/cogs.png");}
|
#b1:hover {
|
||||||
#b4:hover { background-image:url("resources/track.png");}
|
background-image: url("resources/car.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
#b2:hover {
|
||||||
|
background-image: url("resources/sketch.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
#b3:hover {
|
||||||
|
background-image: url("resources/cogs.png");
|
||||||
|
}
|
||||||
|
|
||||||
|
#b4:hover {
|
||||||
|
background-image: url("resources/track.png");
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="menu"><div id="buttonholder">
|
<div id="menu">
|
||||||
<div id="b1" class="button" onclick="myFunction()">Models</div>
|
<div id="buttonholder">
|
||||||
<div id="b2" class="button" onclick="myFunction()">Design</div>
|
<div id="b1" class="button" onclick="myFunction()">Models</div>
|
||||||
<div id="b3" class="button" onclick="myFunction()">Details</div>
|
<div id="b2" class="button" onclick="myFunction()">Design</div>
|
||||||
<div id="b4" class="button" onclick="myFunction()">Specifications</div>
|
<div id="b3" class="button" onclick="myFunction()">Details</div>
|
||||||
|
<div id="b4" class="button" onclick="myFunction()">Specifications</div>
|
||||||
|
</div>
|
||||||
|
<div id="eagle"></div>
|
||||||
|
<div id="senna"></div>
|
||||||
</div>
|
</div>
|
||||||
<div id="eagle"></div>
|
|
||||||
<div id="senna"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<!--div id="logo"></div-->
|
<!--div id="logo"></div-->
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
<!--div id="wrapper2"></div><div id="dropshadowbg"></div-->
|
<!--div id="wrapper2"></div><div id="dropshadowbg"></div-->
|
||||||
<div id="bar">
|
<div id="bar">
|
||||||
|
|
||||||
<div class="bottombox">
|
<div class="bottombox">
|
||||||
<div class="bs">
|
<div class="bs">
|
||||||
ASDadsasddas
|
ASDadsasddas
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue