130 סקריפטים לאתרים!

חדשות והודעות מעניינות בנושאי מחשבים וכל מיני דברים שמצאנו באינטרנט.. לא חייבים להרשם בכדי לכתוב הודעה.

מנהל: גילה טל

130 סקריפטים לאתרים!

הודעהעל ידי uril » יום חמישי 25 דצמבר, 2008 22:07

שימו לב,צריך לשים באזור שתומך בHTML !!!
קישור בולט במעבר העכבר

<A HREF="כתובת הקישור"
onmouseover="style.fontWeight='bold'" onmouseout="style.fontWeight='normal'">שם הקישור</a>

Scripts


מוזיקת רקע
<bgsound src="כתובת השיר.mid" Loop="מס' הפעמים שהוא יישמע">



חסימת מקש ימני עם הודעה
<script language="Javascript1.2">
<!--
message = "את ההודעה כותבים כאן";

bV = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
if (bNS && e.which > 1){
alert(message)
return false
} else if (bIE && (event.button >1)) {
alert(message)
return false;
}
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;
//-->
</script>
<br>
<p>




קבלת שלום יפה
<script language="JavaScript">
<!--
// This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Begin
function testIt() {
Response = "";
while ((Response == "") || (Response == "")){
Response=prompt ("מה שמך?", "");
}
if (Response != null)
alert ("שלום לך " + Response + "");
}
// End
// -->
</script>
<font face="Ms Sans Serif" size=2><input type="button" name="button1" value="רוצים לקבל שלום יפה?לחצו כאן" onclick="testIt()">





הפוך לעמוד הבית
<a href="כתובת האתר שלכם" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage
('your site name');">הפוך לעמוד הבית</a>
הפוך לעמוד הבית



הוסף למועדפים
<a href=javascript:; onClick="javascript:window.external.AddFavorite
('your site adress','your site name')" >הוסף למועדפים</a>


הוסף למועדפים


מחשבון

<script language="JavaScript">
function compute(obj)
{obj.expr.value = eval(obj.expr.value)}
var one = '1'
var two = '2'
var three = '3'
var four = '4'
var five = '5'
var six = '6'
var seven = '7'
var eight = '8'
var nine = '9'
var zero = '0'
var plus = '+'
var minus = '-'
var multiply = '*'
var divide = '/'
var decimal = '.'

function enter(obj, string)
{obj.expr.value += string}

function clear(obj)
{obj.expr.value = ''}

</script> </p>
<form name="calc">
<div align="center"><center><table border="1"
bgcolor="#004B97" bordercolor="#C3FADA">
<TBODY> <tr>
<td colspan="4"><p align="center"><input type="text"
size="30" style="background-color: #fcffff; color: #000000;" name="expr" action="compute(this.form)"> </p>
</td>
</tr>
<tr>
<td><p align="center"><input type="button"
value=" 7 " onclick="enter(this.form, seven)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 8 " onclick="enter(this.form, eight)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 9 " onclick="enter(this.form, nine)"> </p>
</td>
<td><p align="center"><input type="button"
value=" / " onclick="enter(this.form, divide)"> </p>
</td>
</tr>
<tr>
<td><p align="center"><input type="button"
value=" 4 " onclick="enter(this.form, four)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 5 " onclick="enter(this.form, five)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 6 " onclick="enter(this.form, six)"> </p>
</td>
<td><p align="center"><input type="button"
value=" x " onclick="enter(this.form, multiply)"> </p>
</td>
</tr>
<tr>
<td><p align="center"><input type="button"
value=" 1 " onclick="enter(this.form, one)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 2 " onclick="enter(this.form, two)"> </p>
</td>
<td><p align="center"><input type="button"
value=" 3 " onclick="enter(this.form, three)"> </p>
</td>
<td><p align="center"><input type="button"
value=" - " onclick="enter(this.form, minus)"> </p>
</td>
</tr>
<tr>
<td colspan="2"><p align="center"><input
type="button" value=" 0 "
onclick="enter(this.form, zero)"> </p>
</td>
<td><p align="center"><input type="button"
value=" . " onclick="enter(this.form, decimal)"> </p>
</td>
<td><p align="center"><input type="button"
value=" + " onclick="enter(this.form, plus)"> </p>
</td>
</tr>
<tr>
<td colspan="2"><p align="center"><input
type="button" value=" = "
onclick="compute(this.form)"> </p>
</td>
<td colspan="2"><p align="center"><font face="Ms Sans Serif">
<input type="reset"
value=" נקה " onclick="clear(this.form)"></font></p>
</td>
</tr>
</TBODY> </table>
</center></div>
</form>

תמונה נגררת
<STYLE>
.drag{position:relative;cursor:hand}
</STYLE>

<script language=JavaScript><!--
var dragapproved=false;
var z,x,y;
function move()
{
if (event.button==1&&dragapproved)
{
z.style.pixelLeft=temp1+event.clientX-x;
z.style.pixelTop=temp2+event.clientY-y;
return false;
}
}
function drags()
{
if (!document.all)
return;
if (event.srcElement.className=="drag")
{
dragapproved=true;
z=event.srcElement;
temp1=z.style.pixelLeft;
temp2=z.style.pixelTop;
x=event.clientX;
y=event.clientY;
document.onmousemove=move;
}
}
document.onmousedown=drags;
document.onmouseup=new Function("dragapproved=false");
// --></SCRIPT>

<div align=center><IMG alt="image" class=drag height=50 src="כתובת התמונה" width=50>


תיבת טקסט
<textarea cols=25 rows=5 name=>"כתבו פה את הטקסט"

תמונה שרצה אחרי העכבר
<html>
<head>
<style type="text/css">
BODY {overflow: scroll; overflow-x: hidden;}
</style>
</head>
<body>
<script language="JavaScript1.2">
<!--

/*
Submitted by Marcin Wojtowicz [one_spook@hotmail.com]
Featured on Website Abstraction (http://wsabstract.com)
For this and over 400+ free scripts, visit http://wsabstract.com
*/

var trailLength = 8 // The length of trail (8 by default; put more for longer "tail")
var path = "כתובת התמונה שרצה אחרי העכבר" // URL of your image

// do NOT modify anything beyond this point
var isIE = false,isNav = false,range = "all.",style = ".style",i,d = 0
var topPix = ".pixelTop",leftPix = ".pixelLeft",images,storage
if (document.layers) { // browser sniffer
isNav = true,range = "layers.",style = "",topPix = ".top",leftPix = ".left"
} else if (document.all) {
isIE = true
}
function initTrail() { // prepares the script
images = new Array() // prepare the image array
for (i = 0; i < parseInt(trailLength); i++) {
images[i] = new Image()
images[i].src = path
}
storage = new Array() // prepare the storage for the coordinates
for (i = 0; i < images.length*3; i++) {
storage[i] = 0
}
for (i = 0; i < images.length; i++) { // make divs for IE and layers for Navigator
(isIE) ? document.write('<div id="obj' + i + '" style="position: absolute; z-Index: 100; height: 0; width: 0"><img src="' + images[i].src + '"></div>') : document.write('<layer name="obj' + i + '" width="0" height="0" z-index="100"><img src="' + images[i].src + '"></layer>')
}
trail()
}
function trail() { // trailing function
for (i = 0; i < images.length; i++) { // for every div/layer
eval("document." + range + "obj" + i + style + topPix + "=" + storage[d]) // the Y-coordinate
eval("document." + range + "obj" + i + style + leftPix + "=" + storage[d+1]) // the X-coordinate
d = d+2
}
for (i = storage.length; i >= 2; i--) { // save the coordinate for the div/layer that's behind
storage[i] = storage[i-2]
}
d = 0 // reset for future use
var timer = setTimeout("trail()",10) // call recursively
}
function processEvent(e) { // catches and processes the mousemove event
if (isIE) { // for IE
storage[0] = window.event.y+document.body.scrollTop+10
storage[1] = window.event.x+document.body.scrollLeft+10
} else { // for Navigator
storage[0] = e.pageY+12
storage[1] = e.pageX+12
}
}
if (isNav) {
document.captureEvents(Event.MOUSEMOVE) // Defines what events to capture for Navigator
}
if (isIE || isNav) { // initiates the script
initTrail()
document.onmousemove = processEvent // start capturing
}
//-->
</script>

</body>
</html>


חסימת מקש ימני ללא הודעה
<script>
<!-- from http://www.webreference.com/dhtml/diner ... menu/5.asp -->
document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
}
else {
document.onmousedown = function(){return false}
}
</script>

<p>

רענן
<FORM>
<a href="" onclick=parent.location="javascript:location.reload()"><INPUT type=submit value="רענן"></a>
</FORM>




מצב האיסיקיו שלכם
<img src="http://wwp.icq.com/scripts/online.dll?icq=מספר האי סי קיו&img=2">

חלון פופ אפ
<!-- TWO STEPS TO INSTALL POPUP WINDOW:

1. Paste the first into the HEAD of your HTML document
2. Use the code to open the popup page on your site -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document -->

<HEAD>

<script LANGUAGE="JavaScript">
<!-- Idea by: Nic Wolfe (Sagi_l@netvision.net.il) -->
<!-- Web URL: http://www.shumdavar.tk-->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://shumdavar.tk -->

<!-- Begin
function popUp() {
props=window.open('http://כתותבת האתר שרוצים שיפתח בפופ אפ', 'poppage', 'toolbars=0, scrollbars=0, location=0, statusbars=0, menubars=0, resizable=0, width=800, height=600');
}
// End -->
</script>


<!-- STEP TWO: Use the following button code for the new window -->

<form>
<input type=button value="shumdavar.tk" onClick="javascript:popUp()">
</form>

<!-- Script Size: 0.73 KB -->

כמה גולשים באתרכם עכשיו
<script src="http://fastonlineusers.com/online.php?d=כתובת אתרכם"></SCRIPT>

כמה פעמים ביקרת באתר?
<html dir="rtl">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<title>סודה</title>
</head>

<body>

</body>

</html>
<tr><td align=left><script>
function GetCookie (name) {
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf(" ", i) + 1;
if (i == 0) break;
}
return null;
}
function SetCookie (name, value) {
var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + "=" + escape (value) +
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
((path == null) ? "" : ("; path=" + path)) +
((domain == null) ? "" : ("; domain=" + domain)) +
((secure == true) ? "; secure" : "");
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() - 1);
var cval = GetCookie (name);
document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
}
var expDays = 30;
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie('count')
if(count == null) {
SetCookie('count','1')
return 1
}
else {
var newcount = parseInt(count) + 1;
DeleteCookie('count')
SetCookie('count',newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
</script> <script>
document.write("<h3>You've been here <b>" + amt() + "</b> times.</h3>")
</script> </td></body></html>


סקריפט כתב עוקב אחרי העכבר
<html>
<head>
<title></title>

<meta name="generator" content="Created Using Yahoo! PageBuilder 2.60.20">
<script src="http://geocities.yahoo.com/js_source/layers.js"></script>
<style>.texttail {position:absolute; visibility:visible; font-family:monospace, san-serif; font-size:x-large; font-weight:bold; color:FF00FF;}</style>
</head>
<body bgcolor="#FFFFFF" link="#0000FF" vlink="#FF0000" text="#000000"
onLoad="window.onresize=new Function('if (navigator.appVersion==\'Netscape\') history.go(0);');">
<script language="javascript">
c20 = new config();
c20.prefix = "y_texttail20";
c20.updateDelay = 30;
c20.letterspacing = 22;
c20.fontsize = "x-large";
c20.fontweight = "bold";
c20.fontcolor = "FF00FF";
c20.message = "הכנס מילה רצויה כאן";
c20.message = c20.message.split("");
c20.howmany = parseInt(c20.message.length);
c20.oldx = new Array();
c20.oldy = new Array();
c20.uid = 20;
for (i=0;i<c20.howmany;i++) {
c20.oldx[i] = 0;
c20.oldy[i] = -50;
}
if (document.all) {
for (i=0;i<c20.howmany;i++) {
document.writeln("<span id=\"" + c20.prefix + i + "\" class=\"texttail\" style=\"left:0; top:-50;\">" + c20.message[i] + "</span>\n\n");
layers[c20.prefix + i] = document.all[c20.prefix + i];
}
} else if (document.layers) {
for (i=0;i<c20.howmany;i++) {
document.writeln("<layer id=\"" + c20.prefix + i + "\" left=0 top=\"-50\"><span class=\"texttail\">" + c20.message[i] + "</span></layer>\n\n");
layers[c20.prefix + i] = document.layers[c20.prefix + i];
}
}
function updateTextTail© {
for (i=c.howmany-1;i>0;i--) {
c.oldx[i] = c.oldx[i-1] + c.letterspacing;
c.oldy[i] = c.oldy[i-1];
}
c.oldx[0] = cursorX + c.letterspacing;
c.oldy[0] = cursorY;
for (i=0;i<c.howmany;i++) {
if (c.oldx[i] >= getViewWidth() - 30) {
c.oldx[i] = getViewWidth() - 30;
setVisible(c.prefix + i, 0);
} else { setVisible(c.prefix + i, 1); }
moveLayer(c.prefix + i, c.oldx[i], c.oldy[i]);
}
setTimeout("updateTextTail(c" + c.uid + ")", c.updateDelay);
}
if (c20.message != "") {
captureXY();
updateTextTail(c20);
}
</script>
</body>
</html>
<!-- text below generated by server. PLEASE REMOVE --></object></layer></div></span></style></noscript></table></script></applet>
<script language="JavaScript">var PUpage="76001072"; var PUprop="geocities"; </script><script language="JavaScript" src="http://www.geocities.com/js_source/pu2geo.js"></script><script language="JavaScript" src="http://us.geocities.com/js_source/ygIELib9.js?v3"></script><script language="JavaScript">var yviContents='http://us.toto.geo.yahoo.com/toto?s=76001072&l=NE&b=1&t=1002580282';yviR='us';yfiEA(0);</script><script language="JavaScript" src="http://us.geocities.com/js_source/geov2.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.geocities.com/visit.gif?1002580282" border=0 width=1 height=1></noscript>
<IMG SRC="http://geo.yahoo.com/serv?s=76001072&t=1002580282" ALT=1 WIDTH=1 HEIGHT=1>
</body>
</html>
</body>
</html>
</body>
</html>
</body>
</html>
</body>
</html>


שדה תאריך חודשי מעודכן
<FORM>


<!--
This Script from the XooX Site Scripts archives
http://www.xoox.co.il
-->
<SELECT NAME="dates" SIZE=1>
<script LANGUAGE="JavaScript">

today = new Date();
thismonth = today.getMonth() + 1;
thisyear = today.getYear();
thisday = today.getDate();

maxdays=31;//default

// months with 30 days
if (thismonth==4 || thismonth==6 || thismonth==9 || thismonth==11)
{
maxdays=30
}

// february, leap year
if (thismonth==2)
{
// feb
if ((thisyear/4)!=parseInt(thisyear/4))
{
maxdays=28
}
else
{
//leap year
maxdays=29
}
}

thismonth = "" + thismonth
if (thismonth.length == 1)
{
thismonth = "0" + thismonth;
}

for (var theday = 0; theday <= maxdays; theday++)
{
if (theday == 0)
{
document.write ("<OPTION SELECTED> "+ thisday + "-" + thismonth + "-" + thisyear )
document.write ("<OPTION> ========")
}
else
{
var thed = "" + theday
if (thed.length == 1)
{
thed = "0" + thed;
}
document.write ("<OPTION> " + thed + "-" + thismonth + "-" + thisyear)
}
}

</SCRIPT>
</SELECT>
</FORM>





טופס יצירת קשר
איפה שרשום you@domain.co.il אז במקום זה רשמו את כתובת האימייל שלכם
<form action="mailto:you@domain.co.il" method="post" enctype="text/plain">
<div align="right">
<table border="0" cellpadding="0"
cellspacing="0" width="580" bgcolor="white" <tr>
<tr>
<td align="middle" colspan="2" width="578">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="50%">
<p align="right"><b>שם משפחה</b><br>
<input maxlength="40" name="LastName" onfocus="this.select()"dir="rtl" size="20"></td>
<td width="50%">
<p align="right">
<b>שם <br></b>
<input maxlength="40" name="Name" onfocus="this.select()" dir="rtl" size="20"></td>
</tr>
<tr>
<td width="50%"><p align="right"><b>מספר איסיקיו<br></b>
<input maxlength="40" name="ICQ" onfocus="this.select()" dir="rtl" size="20"></p>
</td>
<td width="50%">
<p align="right"><b>אימייל<br></b>
<input maxlength="40" name="Email" onfocus="this.select()" size="20"></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="50%">
<p align="right">
<b>
ההודעה שלך<br>
<TEXTAREA width: 381; height: 308; border: 1pt solid black; background-position: 0%" dir="rtl" name=Message rows=11 cols=37></TEXTAREA></B>
</td>
<td width="50%" valign="top"><p align="right"><b>נושא</B>
<br>
בקשה למשהו חדש באתר
<input type="radio" name="nose" value="בקשה למשהו חדש באתר" checked><br>
הצעות
<input type="radio" name="nose" value="הצעות"><br>
הערות והארות
<input type="radio" name="nose" value="הערות והארות"><br>
פירסום
<input type="radio" name="nose" value="פירסום"><br>
הצטרפות לצוות האתר
<input type="radio" name="nose" value="הצטרפות לצוות האתר"><br>
שונות
<input type="radio" name="nose" value="שונות"></p></td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="middle" colspan="2" width="578">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<P align=center>
<input type="submit" name="Send" value="שלח הודעה"></P>
</td>
<td>
<P align=left><input type="reset" value="נקה טופס"></P>

</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>





תמונה מטיילת על העמוד
<script language="JavaScript1.2">
<!-- Begin

/*
http://www.xoox.co.il
*/

var no = 1; // image number or falling rate
var speed = 1; // the lower the number the faster the image moves
var snow = new Array();
snow[0] = "http://www.xoox.co.il/banners/hat.gif"


var ns4up = (document.layers) ? 1 : 0; // browser sniffer
var ie4up = (document.all) ? 1 : 0;
var ns6up = (document.getElementById&&!document.all) ? 1 : 0;
var dx, xp, yp; // coordinate and position variables
var am, stx, sty; // amplitude and step variables
var i, doc_width = 610, doc_height = 1800;

if (ns4up||ns6up) {
doc_width = self.innerWidth;
doc_height = self.innerHeight;
} else if (ie4up) {
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}

dx = new Array();
xp = new Array();
yp = new Array();
am = new Array();
stx = new Array();
sty = new Array();
j = 0;

for (i = 0; i < no; ++ i) {
dx[i] = 0; // set coordinate variables
xp[i] = Math.random()*(doc_width-250); // set position variables
yp[i] = Math.random()*doc_height;
am[i] = Math.random()*20; // set amplitude variables
stx[i] = 0.02 + Math.random()/10; // set step variables
sty[i] = 0.7 + Math.random(); // set step variables
if (ns4up) { // set layers
if (i == 0) {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\" alt=\"!פורים שמח\"></layer>");
} else {
document.write("<layer name=\"dot"+ i +"\" left=\"15\" top=\"15\" visibility=\"show\"><img src=\""+ snow[j] + "\" border=\"0\" alt=\"!פורים שמח\"></layer>");
} } else if (ie4up||ns6up) { if (i == 0)
{
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img alt=\"XooX\" src=\"" + snow[j] + "\" border=\"0\"></div>");
} else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: absolute; Z-INDEX: "+ i +"VISIBILITY: visible; TOP: 15px; LEFT: 15px; width:1;\"><img alt=\"XooX\" src=\"" + snow[j] + "\" border=\"0\"></div>");
}
}
if (j == (snow.length-1)) { j = 0; } else { j += 1; }
}

function snowNS() { // Netscape main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i]; if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = self.innerWidth;
doc_height = self.innerHeight; }
dx[i] += stx[i];
document.layers["dot"+i].top = yp[i];
document.layers["dot"+i].left = xp[i] +
am[i]*Math.sin(dx[i]);
}
setTimeout("snowNS()", speed);
}

function snowIE_NS6() { // IE main animation function
for (i = 0; i < no; ++ i) { // iterate for every dot
yp[i] -= sty[i];
if (yp[i] < -50) {
xp[i] = Math.random()*(doc_width-am[i]-30);
yp[i] = doc_height;
stx[i] = 0.02 + Math.random()/10;
sty[i] = 0.7 + Math.random();
doc_width = ns6up?window.innerWidth-5:document.body.clientWidth;
doc_height = ns6up?window.innerHeight-5:document.body.clientHeight;
}
dx[i] += stx[i];
if (ie4up){
document.all["dot"+i].style.pixelTop = yp[i];
document.all["dot"+i].style.pixelLeft = xp[i] + am[i]*Math.sin(dx[i]);
}
else if (ns6up){
document.getElementById("dot"+i).style.top=yp[i];
document.getElementById("dot"+i).style.left=xp[i] + am[i]*Math.sin(dx[i]);
}
}
setTimeout("snowIE_NS6()", speed);
}

if (ns4up) {
snowNS();
} else if (ie4up||ns6up) {
snowIE_NS6();
}
// End -->
</script>





כפתור לסגירת העמוד
<form>
<p align="center"><input type="button" value="סגור"
onclick="window.close(self)"> </p>
</form>
גם אני חושב שמגיע לי להיות מנהל אינטרנט ומחשבים!
מעצב אתרים,בונה אתרים,עזרים בבניית אתרים,מפרסם טיפים ומדריכים!
תפנו אליי בנושא של בניית אתרים ועיצובם!
סמל אישי של המשתמש
uril
משתמש חדש
 
הודעות: 10
הצטרף: יום חמישי 25 דצמבר, 2008 21:31
מיקום: בבית היפה שלי!!!

חזור אל מחשבים ואינטרנט

מי מחובר

משתמשים הגולשים בפורום זה: אין משתמשים רשומים ואורח אחד

cron