Tag alle zusammen folgende Probleme:
1. counter Funktioniert nicht, zeigt das gewollte einmal an aber die Seite läd nicht zu Ende
2. Die css Eigenschaften werden nicht übernommen.
Ich übersehe ganz bestimmt irgendwas, aber ich komm grade nicht drauf.
Danke schonmal.
Hier der Code:
HTML
<html>
<head>
<title>freeCounter</title>
<link href="style.css" type="text/css" rel="stylesheet" />
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
<script type="text/javascript" language="javascript">
var date_now = new Date();
function today_date(){
var now_day = date_now.getDay();
var now_hour = date_now.getHours();
var now_minute = date_now.getMinutes();
var now_second = date_now.getSeconds();
var now_sum = now_hour + ":" + now_minute + ":" + now_second;
return(now_sum);
}
</script>
<style type="text/css">
body{
/*background-color: #000000;*/
font-family: Vardana;
}
.div_main{
text-align: center;
margin-left: auto;
margin-right: auto;
width: 700px;
height: 700px;
/*background-color: #272727;*/
margin-top: 50px;
font-size: 20pt;
}
</style>
</head>
<body>
<div class="div_main">
<div id="count_e_1" class="div_counter_1">
<script type="text/javascript" language="javascript">
window.setInterval("document.write(today_date())", 1000);
</script>
</div>
</div>
</body>
</html>
Alles anzeigen