Hi, Retrotown
ich hab mal eine Frage an euch
geht mal auf Is it up?
und dann ist da ja unten eine Textbox aber
ich will das diese Textbox in diesem Bild da ist mittig...
wie geht das in HTML?
Hi, Retrotown
ich hab mal eine Frage an euch
geht mal auf Is it up?
und dann ist da ja unten eine Textbox aber
ich will das diese Textbox in diesem Bild da ist mittig...
wie geht das in HTML?
Hier:
<html>
<head>
<title>Is it up?</title>
<script type="text/javascript">
function checkIt(url)
{
if (window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById('result').innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET",window.location.pathname.split('#')[0]+"?url="+url,true);
xmlhttp.send();
return false;
}
</script>
<style type="text/css">
body{background-color:#fff;color:#000;font-family:Verdana;font-size:20px;text-align:center;}
#result{font-size:20px;margin:auto;font-weight: bold;}
#centered{text-align:center;height:120px;width:800px;position:absolute;top:50%;left:50%;margin-top:-60;margin-left:-400;}
#domain{border:2px dotted #ccc;color:#000;font-size:20px;padding:4px;width:400px;height:42px;}
input[type=text]{border:2px dotted #ccc;color:#000;font-size:20px;padding:4px;width:400px;height:42px;}
</style>
</head>
<body><script type="text/javascript" src="http://www.bplaced.net/pub/bpa.js"></script>
<div id="top">
<img src="http://idabbo.de/index/images.png" alt="Habbo" height="560" width="862" />
<form onSubmit="checkIt(document.getElementById('domain').value); return false;" action="#">
<div style="margin-top:-300px;"><input type="text" size="25" id="domain" value="google.com" onClick="javascript:this.select()"></div>
</form>
<div id="result"></div>
</div>
</body>
</html>
Alles anzeigen
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!