61 lines
No EOL
1.5 KiB
HTML
61 lines
No EOL
1.5 KiB
HTML
<html>
|
|
<head>
|
|
<title>Logo maker</title>
|
|
<meta name="viewport" content="width=240">
|
|
<style>body { margin-top:5px; margin-bottom:0px; }</style>
|
|
<script>
|
|
function getlogo(){
|
|
var num=0;
|
|
var text=document.getElementById('box').value;
|
|
if (num == 0){
|
|
if (document.getElementById('1').checked == true){
|
|
num=1;
|
|
}
|
|
else if (document.getElementById('2').checked == true){
|
|
num=2;
|
|
}
|
|
else if (document.getElementById('3').checked == true){
|
|
num=3;
|
|
}
|
|
else if (document.getElementById('4').checked == true){
|
|
num=4;
|
|
}
|
|
else if (document.getElementById('5').checked == true){
|
|
num=5;
|
|
}
|
|
}
|
|
if (num == 1){
|
|
window.location="http://logo54.com/movie/monster/logo.php?lo="+text;
|
|
}
|
|
else if (num == 2){
|
|
window.location="http://logo54.com/car/ferrari/logo.php?lo="+text;
|
|
}
|
|
else if (num == 3){
|
|
window.location="http://logo54.com/movie/harry/logo.php?lo="+text;
|
|
}
|
|
else if (num == 4){
|
|
window.location="http://logo54.com/movie/starwars/logo.php?lo="+text;
|
|
}
|
|
else if (num == 5){
|
|
window.location="http://logo54.com/net/yahoo/logo.php?lo="+text;
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body bgcolor=deepskyblue>
|
|
<center><font size=2><u>Pick a style</u></font></center>
|
|
<font size=1>
|
|
<input type=radio id=1 checked>Monsters INC<br>
|
|
<input type=radio id=2>Neat Design<br>
|
|
<input type=radio id=3>Harry Potter<br>
|
|
<input type=radio id=4>Star Wars<br>
|
|
<input type=radio id=5>Yahoo!<br>
|
|
</font>
|
|
<center><font size=2><u>Enter text</u></font></center>
|
|
<input type=text id=box value=logo size=30>
|
|
<center>
|
|
<input type=button value=Generate onclick=getlogo();><br>
|
|
<font size=1>You may save logos via PC</font>
|
|
</center>
|
|
</body>
|
|
</html> |