Graphic Alchemist - Graphic,Contests,Tutorial & Fun <3

calendario, Lavoro Consegnato

« Older   Newer »
  Share  
Hinata-Chan
view post Posted on 21/6/2008, 16:15




avrei bisogno di un calendario perfavore... :ehm:

CALENDARIO
MISURE (sign, blend, avatar e/o set).:300x300
COLORE / FONT :/
URL IMMAGINE/I :(vedi sotto)
LE SCRITTE DA METTERE SULL'IMMA. :giugno e tutti giorni del mese con l'ora(se lo sapete fare): http://fc03.deviantart.com/fs17/i/2007/158...by_Aiarashi.jpg
PREFERENZE GENERALI :adattato alla skin
PREFERENZE INCARICO A :chi vi pare
 
Top
view post Posted on 21/6/2008, 16:26
Avatar

Bananas

Group:
Founder
Posts:
8,115
Location:
Midgar

Status:


mi dispiace nn sappiamo fare queste cose ^^
 
Web  Top
.Mielikki
view post Posted on 21/6/2008, 17:09




faccio io, perņ solo 123x230! ^^
 
Top
.Mielikki
view post Posted on 21/6/2008, 17:25




Ecco il codice, dimmi se funziona e spero ti piaccia (č il primo che faccio >.<)

CODICE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Calendario</title>

</head>

<body>

<p><!--webbot bot="HTMLMarkup" startspan -->
<table border="0" cellspacing="0" cellpadding="0" width="123" height="230" background="http://img116.imageshack.us/img116/9437/calndff4.jpg" style="border-collapse: collapse" align="center">
<tr>
        <td height="110" width="100">
        <td colspan="25" height="35"><br>
        </td>
</tr>
      <tr>
        <td width="11" height="101">
        </td>
        <td align="center" valign="top" width="106" height="90">
          <script language="JavaScript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!--//Begin
monthnames = new Array(
"GENNAIO",
"FEBBRAIO",
"MARZO",
"APRILE",
"MAGGIO",
"GIUGNO",
"LUGLIO",
"AGOSTO",
"SETTEMBRE",
"OTTOBRE",
"NOVEMBRE",
"DICEMBRE");
var linkcount=0;
function addlink(month, day, href) {
var entry = new Array(3);
entry[0] = month;
entry[1] = day;
entry[2] = href;
this[linkcount++] = entry;
}
Array.prototype.addlink = addlink;
linkdays = new Array();
monthdays = new Array(12);
monthdays[0]=31;
monthdays[1]=28;
monthdays[2]=31;
monthdays[3]=30;
monthdays[4]=31;
monthdays[5]=30;
monthdays[6]=31;
monthdays[7]=31;
monthdays[8]=30;
monthdays[9]=31;
monthdays[10]=30;
monthdays[11]=31;
todayDate=new Date();
thisday=todayDate.getDay();
thismonth=todayDate.getMonth();
thisdate=todayDate.getDate();
thisyear=todayDate.getYear();
thisyear = thisyear % 100;
thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
if (((thisyear % 4 == 0)
&& !(thisyear % 100 == 0))
||(thisyear % 400 == 0)) monthdays[1]++;
startspaces=thisdate;
while (startspaces > 7) startspaces-=7;
startspaces = thisday - startspaces + 1;
if (startspaces < 0) startspaces+=7;
document.write("<FONT face='tahoma'>");
document.write("<table border=0 " );
document.write("style='font-size : 11px; color : #000000;' cellpadding=0 cellspacing=1>");

document.write("<tr><td colspan=7><center>"
+ monthnames[thismonth] + " " + thisyear
+ "</center></td></tr>");
document.write("<tr>");
document.write("<td align=center><font color=#FF0000>D</td>");
document.write("<td align=center><font color=#FF0000>L</td>");
document.write("<td align=center><font color=#FF0000>M</td>")
document.write("<td align=center><font color=#FF0000>M</td>");
document.write("<td align=center><font color=#FF0000>G</td>");
document.write("<td align=center><font color=#FF0000>V</td>");
document.write("<td align=center><font color=#FF0000>S</td>");<!--Last color chage here-->
document.write("</tr>");
document.write("<tr>");
for (s=0;s<startspaces;s++) {
document.write("<td>-</td>");
}
count=1;
while (count <= monthdays[thismonth]) {
for (b = startspaces;b<7;b++) {
linktrue=false;
document.write("<td>");
for (c=0;c<linkdays.length;c++) {
if (linkdays[c] != null) {
if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
document.write("<a href=\"" + linkdays[c][2] + "\">");
linktrue=true;
}
}
}
if (count==thisdate) {
document.write("<font color='#FF0000'>");
}
if (count <= monthdays[thismonth]) {
document.write(count);
}
else {
document.write(" ");
}
if (count==thisdate) {
document.write("</font>");
}
if (linktrue)
document.write("</a>");
document.write("</td>");
count++;
}
document.write("</tr>");
document.write("<tr>");
startspaces=0;
}
document.write("</table>");
document.write("</FONT>");
</script>
        </td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="1" height="101"></td>
        <td width="72" height="90"></td>
      </tr>
</table>
<!--webbot bot="HTMLMarkup" endspan i-checksum="58385" -->

</body>

</html><!-- saved from url=(0022)http://internet.e-mail -->
<!-- START Digilander F -->
<SCRIPT LANGUAGE="Javascript">
<!--
rs_DLR=1;
//-->
</SCRIPT>
<SCRIPT LANGUAGE="Javascript" SRC="/_ad/digi_ad_11.js">
</SCRIPT>
<!-- END Digilander F -->
<!-- START RedMeasure V4 - CGI v1.1 $Revision: 1.2 $ -->
<!-- COPYRIGHT 2000 Red Sheriff Limited -->

<script language="JavaScript"><!--
var pCid="it_Libero-it_0";
var w0=1;
var refR=escape(document.referrer);
if (refR.length>=252) refR=refR.substring(0,252)+"...";
//--></script>

<script language="JavaScript"><!--
if(w0&&rs_DLR){
      document.write('<img src="http://server-it.imrworldwide.com/cgi-bin/count?ref='+
              refR+'&cid='+pCid+'" width=1 height=1>');
}
document.write("<COMMENT>");
//-->
</script>
<noscript>
<img src="http://server-it.imrworldwide.com/cgi-bin/count?cid=it_Libero-it_0" width=1 height=1>
</noscript>
</COMMENT>

<!-- END RedMeasure V4 -->
 
Top
Hinata-Chan
view post Posted on 21/6/2008, 17:38




O.O wow, ehm che devo fare esattamente?
 
Top
.Mielikki
view post Posted on 21/6/2008, 19:24




Suppongo che tu voglia metterlo nella tabella nella pagina iniziale, giusto?
Tu metti tutto il link li dentro e il gioco č fatto! ^_____^
 
Top
Hinata-Chan
view post Posted on 22/6/2008, 14:36




ah ok grazie mille^_^
 
Top
6 replies since 21/6/2008, 16:15   112 views
  Share