طلب

4 مشترك

اذهب الى الأسفل

طلب            Empty طلب

مُساهمة من طرف الغزالي اكس ميوزك الجمعة 25 أكتوبر 2013 - 7:00

اريد كود زغرفه الاسماء لاضعه في منتدايا
http://alazale.lolbb.com
الغزالي اكس ميوزك
الغزالي اكس ميوزك
 
 

ذكر
عدد المساهمات : 564
معدل النشاط : 4988
السُمعة : 0

http://alazale.a7larab.net

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف ImAd96 الجمعة 25 أكتوبر 2013 - 7:19

ImAd96
ImAd96
 
 

ذكر
عدد المساهمات : 341
معدل النشاط : 4724
السُمعة : 22

http://www.vivaalgeria.com/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف stones الجمعة 25 أكتوبر 2013 - 7:23

stones
stones
 
 

ذكر
عدد المساهمات : 7462
معدل النشاط : 16222
السُمعة : 414

http://stones.arab.st/

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الغزالي اكس ميوزك الجمعة 25 أكتوبر 2013 - 9:00

مش دا الي انا عاوزو
انا عاوز اعمل صفحه هتمل او موضوع في قسم يدخول عليه الزوار او الاعضاء يكتبو الي هما عوزين يزغرفوه بالعربي عادي يظهرلهم في المربع الاخر مزغرف
مثل هذا الموقع
http://www.uaewomen.net/z/
الغزالي اكس ميوزك
الغزالي اكس ميوزك
 
 

ذكر
عدد المساهمات : 564
معدل النشاط : 4988
السُمعة : 0

http://alazale.a7larab.net

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:03

جرب هذا الكود
اخذته من الموقع بس لسة انا ما جربته عشان مشغولة كتير

الكود:
<!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>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>زخرف اسمك</title>
<style type="text/css">
<!--
body {
   font: 100% Verdana, Arial, Helvetica, sans-serif;
   background: #f2d8e6;
   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
   padding: 0;
   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
   color: #000000;
}
/* Tips for Elastic layouts
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
.twoColElsLt #container {
   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
   width:100%;
   background: #FFFFFF;
   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
   border: 1px solid #000000;
   text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.
*/
.twoColElsLt #sidebar1 {
   float: left;
   width: 12em; /* since this element is floated, a width must be given */
   background: #f1ebed; /* the background color will be displayed for the length of the content in the column, but no further */
   padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
   margin-right: 10px;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLt #mainContent {
   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
   float: right;
   margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
   float: left;
   margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
   clear:both;
   height:0;
   font-size: 1px;
   line-height: 0px;
}
.texto {
   color:#FF0000;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:12px;
   font-weight:bold;
}
-->
</style>
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsLt #sidebar1 { padding-top: 30px; }
.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
<style type="text/css">
.topFrame {width:550px; height:170px;}
.bottomFrame {width:550px; height:170px;}
textarea { font-family: "Arial Unicode MS", Batang }
.style1 {
            text-align: center;
}
</style>

<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة" />

<script language="JavaScript">
var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;
var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;
var flipTable = {
ا : 'آ',
ب : 'بّـ',
و : 'وِ',
ي : 'يّ',
ث : 'ثًـ',
ت : 'تُ',
خ : 'خٌ ـ',
ج : 'جَ ـ',
د : 'دُ',
ذ : 'ذٌ',
ز : 'زَ',
س : 'سًسًـ',
ش : 'شّـ',
ص : 'صِـ',
غ : 'غّ ـ',
ك : 'ك',
ف : 'فُ',
م : 'مِ',
ل : 'لَ',
ن : 'نٌ',
ه : 'هِ',
ح : 'حً ـ',
ع : 'عَ ـ',
ق : 'قَ',
ط : 'طٌ',
ظ : 'ظٌـ',
a : 'λ',
b : 'ك',
c : 'Ș',
d : 'ɖ',
e : 'ε',
f : 'ʃ',
g : 'Ģ',
h : 'ħ',
i : 'ί',
j : 'ĵ',
k : 'κ',
l : 'ι',
m : 'ɱ',
n : 'ɴ',
o : 'Θ',
p : 'p',
q : 'ƣ',
r : 'ર',
s : 'Ș',
t : 'τ',
u : 'Ʋ',
v : 'ν',
w : 'ώ',
x : 'Χ',
y : 'ϓ',
z : 'z',
A : 'Λ',
B : 'β',
C : 'Ͼ',
D : 'Đ',
E : 'Σ',
F : 'Ḟ',
G : 'Ḡ',
H : 'Ḥ',
I : 'ḭ',
J : 'J',
K : 'Ḳ',
L : 'Ɫ',
M : 'Ṃ',
N : 'Ṇ',
O : 'Ṓ',
P : 'Ᵽ',
Q : 'Q',
R : 'Ṝ',
S : 'Ṩ',
T : 'Ṫ',
U : 'Ṷ',
V : 'Ṿ',
W : 'Ẅ',
X : 'Ẍ',
Y : 'Ῡ',
Z : 'Ẓ',}

function FP_swapImg() {//v1.0
 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
 elm.$src=elm.src; elm.src=args[n+1]; } }
}
function FP_getObjectByID(id,o) {//v1.0
 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
 return null;
}
</script>
</head>
<body class="twoColElsLt" style="background-color: #f2d8e6;  onload=" FP_preloadImgs(="" /*url*/'button88.jpg',="" /*url*/'button8A.jpg',="" /*url*/'button8B.jpg',="" /*url*/'button90.jpg',="" /*url*/'button91.jpg',="" /*url*/'buttonA7.jpg',="" /*url*/'buttonA8.jpg',="" /*url*/'buttonAD.jpg',="" /*url*/'buttonAE.jpg',="" /*url*/'buttonB6.jpg',="" /*url*/'buttonB7.jpg',="" /*url*/'buttonBC.jpg',="" /*url*/'buttonBD.jpg',="" /*url*/'buttonB.jpg',="" /*url*/'buttonA.jpg',="" /*url*/'buttonE.jpg',="" /*url*/'buttonD.jpg',="" /*url*/'button70.jpg',="" /*url*/'button71.jpg',="" /*url*/'button73.jpg',="" /*url*/'button74.jpg',="" /*url*/'button76.jpg',="" /*url*/'button77.jpg',="" /*url*/'button79.jpg',="" /*url*/'button7A.jpg',="" /*url*/'button7C.jpg',="" /*url*/'button7D.jpg',="" /*url*/'button7F.jpg',="" /*url*/'button80.jpg')"="" topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
    <center class="style1">
      <form name="f">
       
              <b><font color="#666666">
            <span style="background-color: #ffffff">
            <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB" fp-title="زخرفة انجليزية" /></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB" fp-title="زخرف بنفسك" /></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="100" alt="آعكس اسمك" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB; fp-proportional: 0" fp-title="آعكس اسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')" /></a><br />
            <br />
            <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')" /></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')" /></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-bgcolor: #EBEBEB; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')" /></a><br />
              <br />
            <br />
        </span></font></b>
        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt; width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>
            <p class="style1">
             <a href="z6.html">
            <img border="0" id="img31" src="button7E.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img31',/*url*/'button7F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img31',/*url*/'button7E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img31',/*url*/'button80.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img31',/*url*/'button7F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="زخٌ?ـرفُ?ـه?ـِ 6" /></a><a href="z5.html"><img border="0" id="img30" src="button7B.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img30',/*url*/'button7C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img30',/*url*/'button7B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img30',/*url*/'button7D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img30',/*url*/'button7C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="زخٌرفُة 5" /></a><a href="z4.html"><img border="0" id="img29" src="button78.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img29',/*url*/'button79.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img29',/*url*/'button78.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img29',/*url*/'button7A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img29',/*url*/'button79.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="ڒٍخـޢޢـرفـة 4" /></a></p>
            <p class="style1">
             <a href="z3.html"><img border="0" id="img28" src="button75.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img28',/*url*/'button76.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img28',/*url*/'button75.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img28',/*url*/'button77.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img28',/*url*/'button76.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="ڒٍخـ☻ـرفـ☻ـة 3" /></a><a href="z2.html"><img border="0" id="img27" src="button72.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img27',/*url*/'button73.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img27',/*url*/'button72.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img27',/*url*/'button74.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img27',/*url*/'button73.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2" /></a><a href="z1.html"><img border="0" id="img26" src="button6F.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img26',/*url*/'button70.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img26',/*url*/'button6F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img26',/*url*/'button71.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img26',/*url*/'button70.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-bgcolor: #EBEBEB" fp-title="ڒٍخـ,ـرفـ,ـة 1" /></a></p>
      <p class="style1">
              <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt; width: 303px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>
         <p>
         </p>
         </form>
    </center>
     <p class="style1"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

   
  </body></html>
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الغزالي اكس ميوزك الجمعة 25 أكتوبر 2013 - 9:04

اجربه في موضوع؟
الغزالي اكس ميوزك
الغزالي اكس ميوزك
 
 

ذكر
عدد المساهمات : 564
معدل النشاط : 4988
السُمعة : 0

http://alazale.a7larab.net

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:07

أخي الكود يعمل و لكنه فيه خلل ما ؟
انظر
http://mareha-anime.pops.tv/h15-page
اكتشفت انه فيه نقص ما

لما الاقي وقت عشان اصلحه راح بصلحه
ان شاء الله


لدي كود زخرفة اسماء بالانجليزي
بدك اياه ؟
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:08

لا هذا في صفحة
Html
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الغزالي اكس ميوزك الجمعة 25 أكتوبر 2013 - 9:18

لالا
انا اريد كود مثل هذا بالظبط وهو يزغرف الاعبي والنجليزي
ينقصه صور الزراير
الغزالي اكس ميوزك
الغزالي اكس ميوزك
 
 

ذكر
عدد المساهمات : 564
معدل النشاط : 4988
السُمعة : 0

http://alazale.a7larab.net

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:28

اي نعم
المهم الكود عندك بس لسة ناقص
كأنو موقع الزخرفة هذا عدة صفحات ...Html
كل مبدك تزخرف اسماء بزخرفة معينة تضغط على الزخرفة ثم
تكتب في الخانة
الأزرار مش مشكلة تقدر تعوضهم بصور ازرار من عندك
او بأزرار نصية فقط

هذه هي الأكواد طلعت فعلاً عدة صفحات

كود الزخرفة الأولى

الكود:
<!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>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>زخرف اسمك</title>
<style type="text/css">
<!--
body {
   font: 100% Verdana, Arial, Helvetica, sans-serif;
   background: #f2d8e6;
   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
   padding: 0;
   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
   color: #000000;
}
/* Tips for Elastic layouts
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
.twoColElsLt #container {
   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
   width:100%;
   background: #f2d8e6;
   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
   border: 1px solid #000000;
   text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.
*/
.twoColElsLt #sidebar1 {
   float: left;
   width: 12em; /* since this element is floated, a width must be given */
   background: #f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */
   padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
   margin-right: 10px;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLt #mainContent {
   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
   float: right;
   margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
   float: left;
   margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
   clear:both;
   height:0;
   font-size: 1px;
   line-height: 0px;
}
.texto {
   color:#FF0000;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:12px;
   font-weight:bold;
}
-->
</style>
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsLt #sidebar1 { padding-top: 30px; }
.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
<style type="text/css">
.topFrame {width:550px; height:170px;}
.bottomFrame {width:550px; height:170px;}
textarea { font-family: "Arial Unicode MS", Batang }
.style1 {
            text-align: center;
}
</style>

<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة" />

<script language="JavaScript">
var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;
var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;
var flipTable = {
ا : 'آ',
ب : 'بـ,ـ',
و : 'ۅ',
ي : 'يـ,ـ',
ث : 'ثـ,ـ',
ت : 'تـ,ـ',
خ : 'خـ,ـ',
ج : 'جـ,ـ',
د : 'د',
ذ : 'ذ',
ز : 'ڒٍ',
س : 'سـ,ـ',
ش : 'شـ,ـ',
ص : 'صـ,ـ',
غ : 'غـ,ـ',
ك : 'كـ,ـ',
ف : 'فـ,ـ',
م : 'مـ,ـ',
ل : 'لـ,ـ',
ن : 'نـ,ـ',
ه : 'هـ,ـ',
ح : 'حـ,ـ',
ع : 'عـ,ـ',
ق : 'قـ,ـ',
ط : 'طـ,ـ',
ظ : 'ظـ,ـ',
a : 'ⓐ',
b : 'ⓑ',
c : '©',
d : 'ⓓ',
e : 'ⓔ',
f : 'ⓕ',
g : 'ⓖ',
h : 'ⓗ',
i : 'ⓘ',
j : 'ⓙ',
k : 'ⓚ',
l : 'ⓛ',
m : 'ⓜ',
n : 'ⓝ',
o : 'ⓞ',
p : 'ⓟ',
q : 'ⓠ',
r : 'ⓡ',
s : 'ⓢ',
t : 'ⓣ',
u : 'ⓤ',
v : 'ⓥ',
w : 'ⓦ',
x : 'ⓧ',
y : 'ⓨ',
z : 'ⓩ',
A : 'Λ',
B : 'β',
C : 'Ͼ',
D : 'Đ',
E : 'Σ',
F : 'Ḟ',
G : 'Ḡ',
H : 'Ḥ',
I : 'ḭ',
J : 'J',
K : 'Ḳ',
L : 'Ɫ',
M : 'Ṃ',
N : 'Ṇ',
O : 'Ṓ',
P : 'Ᵽ',
Q : 'Q',
R : 'Ṝ',
S : 'Ṩ',
T : 'Ṫ',
U : 'Ṷ',
V : 'Ṿ',
W : 'Ẅ',
X : 'Ẍ',
Y : 'Ῡ',
Z : 'Ẓ',}

function FP_swapImg() {//v1.0
 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
 elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
 return null;
}
</script>
</head>
<body class="twoColElsLt" style="background-color: #f2d8e6;  " onload="FP_preloadImgs(/*url*/'button8A.jpg',/*url*/'button8B.jpg',/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button19.jpg',/*url*/'button1A.jpg',/*url*/'button1C.jpg',/*url*/'button1D.jpg',/*url*/'button1F.jpg',/*url*/'button20.jpg',/*url*/'button22.jpg',/*url*/'button23.jpg',/*url*/'button33.jpg',/*url*/'button32.jpg',/*url*/'button30.jpg',/*url*/'button2F.jpg')">
      <form name="f">
       
              <div class="style1">
                        <b><font color="#666666">
                        <span style="background-color: #f2d8e6">
                        <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية" /></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك" /></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="100" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')" /></a><br />
                        <br />
                        <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')" /></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')" /></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')" /></a><br />
        </span></font></b>
              <br />
            <br />
            <br />
        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border-style:groove; border-width:3px; font-size: 12pt; background-image:url('rao3h.png'); width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>
            </div>
            <p class="style1">
             <a href="z6.html">
            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌ?ـرفُ?ـه?ـِ 6" /></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌرفُة 5" /></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4" /></a></p>
            <p class="style1">
             <a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3" /></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2" /></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1" /></a></p>
    <center>
      <p class="style1">
              <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt; background-image:url('rao3h.png'); width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>
    <center>
         <p>
         </p>
         <p>
         </p>
         <p>
         </p>
         </center>
         </center>
         </form>
    <center></center>
    <center></center>
     <p class="style1"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

   
  </body></html>
كود الزخرفة 2


الكود:
<!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>


<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>زخرف اسمك</title>
<style type="text/css">
<!--
body {
   font: 100% Verdana, Arial, Helvetica, sans-serif;
   background: #f2d8e6;
   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
   padding: 0;
   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
   color: #000000;
}
/* Tips for Elastic layouts
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
.twoColElsLt #container {
   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
   width:100%;
   background: #f2d8e6;
   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
   border: 1px solid #000000;
   text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.
*/
.twoColElsLt #sidebar1 {
   float: left;
   width: 12em; /* since this element is floated, a width must be given */
   background: #f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */
   padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {
   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
   margin-right: 10px;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLt #mainContent {
   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
   float: right;
   margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
   float: left;
   margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
   clear:both;
   height:0;
   font-size: 1px;
   line-height: 0px;
}
.texto {
   color:#FF0000;
   font-family:Verdana, Arial, Helvetica, sans-serif;
   font-size:12px;
   font-weight:bold;
}
-->
</style>
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColElsLt #sidebar1 { padding-top: 30px; }
.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
<style type="text/css">
.topFrame {width:550px; height:170px;}
.bottomFrame {width:550px; height:170px;}
textarea { font-family: "Arial Unicode MS", Batang }
.style1 {
            text-align: center;
}
</style>

<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة" />

<script language="JavaScript">
var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;
var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;
var flipTable = {
ا : 'آ',
ب : 'بُـ‘ـُ',
و : 'ۅ',
ي : 'يُـ‘ـُ',
ث : 'ثُـ‘ـُ',
ت : 'تُـ‘ـُ',
خ : 'خُـ‘ـُ',
ج : 'جُـ‘ـُ',
د : 'ډ',
ذ : 'ڏ',
ز : 'ڒٍ',
س : 'سُـ‘ـُ',
ش : 'شُـ‘ـُ',
ص : 'صُـ‘ـُ',
غ : 'غُـ‘ـُ',
ك : 'كُـ‘ـُ',
ف : 'فُـ‘ـُ',
م : 'مُـ‘ـُ',
ل : 'لُـ‘ـُ',
ن : 'نُـ‘ـُ',
ه : 'هـُ‘ـُ',
ح : 'حُـ‘ـُ',
ع : 'عُـ‘ـُ',
ق : 'قُـ‘ـُ',
ط : 'طُـ‘ـُ',
ظ : 'ظُـ‘ـُ',
a : 'Ă',
b : 'Ḇ',
c : 'Ͼ',
d : 'Đ',
e : 'Σ',
f : 'Ḟ',
g : 'Ḡ',
h : 'Ḥ',
i : 'ḭ',
j : 'J',
k : 'Ḳ',
l : 'Ɫ',
m : 'Ṃ',
n : 'Ṇ',
o : 'Ṓ',
p : 'Ᵽ',
q : 'Q',
r : 'Ṝ',
s : 'Ṩ',
t : 'Ṫ',
u : 'Ṷ',
v : 'Ṿ',
w : 'Ẅ',
x : 'Ẍ',
y : 'Ῡ',
z : 'Ẓ',
A : 'Λ',
B : 'β',
C : 'Ͼ',
D : 'Đ',
E : 'Σ',
F : 'Ḟ',
G : 'Ḡ',
H : 'Ḥ',
I : 'ḭ',
J : 'J',
K : 'Ḳ',
L : 'Ɫ',
M : 'Ṃ',
N : 'Ṇ',
O : 'Ṓ',
P : 'Ᵽ',
Q : 'Q',
R : 'Ṝ',
S : 'Ṩ',
T : 'Ṫ',
U : 'Ṷ',
V : 'Ṿ',
W : 'Ẅ',
X : 'Ẍ',
Y : 'Ῡ',
Z : 'Ẓ',}

function FP_swapImg() {//v1.0
 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
 elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
 return null;
}
</script>
</head>
<body class="twoColElsLt" style="background-color: #f2d8e6 " onload="FP_preloadImgs(/*url*/'button8A.jpg',/*url*/'button8B.jpg',/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button23.jpg',/*url*/'button22.jpg',/*url*/'button20.jpg',/*url*/'button1F.jpg',/*url*/'button1D.jpg',/*url*/'button1C.jpg',/*url*/'button1A.jpg',/*url*/'button19.jpg',/*url*/'button33.jpg',/*url*/'button32.jpg',/*url*/'button30.jpg',/*url*/'button2F.jpg')">
      <form name="f">
       
              <div class="style1">
                        <b><font color="#666666">
                        <span style="background-color: #f2d8e6">
                        <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية" /></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك" /></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="100" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')" /></a><br />
                        <br />
                        <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')" /></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')" /></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')" /></a><br />
        </span></font></b>
              <br />
            <br />
            <br />
        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt; background-image:url('rao3h.png'); width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>
            </div>
            <p class="style1">
             <a href="z6.html">
            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌ?ـرفُ?ـه?ـِ 6" /></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌرفُة 5" /></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4" /></a></p>
            <p class="style1">
             <a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3" /></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2" /></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1" /></a></p>
    <center>
      <p class="style1">
              <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt; background-image:url('rao3h.png'); width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>
    <center>
         <p>
         </p>
         <p>
         </p>
         <p>
         </p>
         </center>
         </center>
         </form>
    <center></center>
    <center></center>
     <p class="style1"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

   
  </body></html>
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:32

كود زخرفة 3


الكود:
<!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>





<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>زخرف اسمك</title>

<style type="text/css">

<!--

body {

   font: 100% Verdana, Arial, Helvetica, sans-serif;

   background: #f2d8e6;

   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

   padding: 0;

   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

   color: #000000;

}

/* Tips for Elastic layouts

1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.

2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.

3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.

*/

.twoColElsLt #container {

   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */

   width:100%;

   background: #f2d8e6;

   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

   border: 1px solid #000000;

   text-align: left; /* this overrides the text-align: center on the body element. */

}

/* Tips for sidebar1:

1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.

2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.

*/

.twoColElsLt #sidebar1 {

   float: left;

   width: 12em; /* since this element is floated, a width must be given */

   background: #f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */

   padding: 15px 0; /* top and bottom padding create visual space within this div */

}

.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {

   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */

   margin-right: 10px;

}

/* Tips for mainContent:

1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.

2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.

3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.

4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.

*/

.twoColElsLt #mainContent {

   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */

}

/* Miscellaneous classes for reuse */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */

   float: right;

   margin-left: 8px;

}

.fltlft { /* this class can be used to float an element left in your page */

   float: left;

   margin-right: 8px;

}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

   clear:both;

   height:0;

   font-size: 1px;

   line-height: 0px;

}

.texto {

   color:#FF0000;

   font-family:Verdana, Arial, Helvetica, sans-serif;

   font-size:12px;

   font-weight:bold;

}

-->

</style>

<!--[if IE]>

<style type="text/css">

/* place css fixes for all versions of IE in this conditional comment */

.twoColElsLt #sidebar1 { padding-top: 30px; }

.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

</style>

<![endif]-->

<style type="text/css">

.topFrame {width:550px; height:170px;}

.bottomFrame {width:550px; height:170px;}

textarea { font-family: "Arial Unicode MS", Batang }

</style>



<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة">



<script language="JavaScript">

var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;

var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;

var flipTable = {

ا : 'آ',

ب : 'بـ☻ـ',

و : 'ۅ',

ي : 'يـ☻ـ',

ث : 'ثـ☻ـ',

ت : 'تـ☻ـ',

خ : 'خـ☻ـ',

ج : 'جـ☻ـ',

د : 'د',

ذ : 'ذ',

ز : 'ڒٍ',

س : 'سـ☻ـ',

ش : 'شـ☻ـ',

ص : 'صـ☻ـ',

غ : 'غـ☻ـ',

ك : 'كـ☻ـ',

ف : 'فـ☻ـ',

م : 'مـ☻ـ',

ل : 'لـ☻ـ',

ن : 'نـ☻ـ',

ه : 'هـ☻ـ',

ح : 'حـ☻ـ',

ع : 'عـ☻ـ',

ق : 'قـ☻ـ',

ط : 'طـ☻ـ',

ظ : 'ظـ☻ـ',

a : 'მ',

b : 'ჩ',

c : 'ʂ',

d : 'ძ',

e : 'ε',

f : 'բ',

g : 'ց',

h : 'հ',

i : 'ἶ',

j : 'ʝ',

k : 'ƙ',

l : 'l',

m : 'ო',

n : 'ղ',

o : 'օ',

p : 'p',

q : 'գ',

r : 'ɾ',

s : 'ʂ',

t : 'է',

u : 'մ',

v : 'ν',

w : 'ω',

x : 'ჯ',

y : 'ყ',

z : 'z',

A : 'Λ',

B : 'β',

C : 'Ͼ',

D : 'Đ',

E : 'Σ',

F : 'Ḟ',

G : 'Ḡ',

H : 'Ḥ',

I : 'ḭ',

J : 'J',

K : 'Ḳ',

L : 'Ɫ',

M : 'Ṃ',

N : 'Ṇ',

O : 'Ṓ',

P : 'Ᵽ',

Q : 'Q',

R : 'Ṝ',

S : 'Ṩ',

T : 'Ṫ',

U : 'Ṷ',

V : 'Ṿ',

W : 'Ẅ',

X : 'Ẍ',

Y : 'Ῡ',

Z : 'Ẓ',}





function FP_swapImg() {//v1.0

 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;

 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;

 elm.$src=elm.src; elm.src=args[n+1]; } }

}



function FP_preloadImgs() {//v1.0

 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();

 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }

}



function FP_getObjectByID(id,o) {//v1.0

 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);

 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;

 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)

 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }

 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;

 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }

 return null;

}

</script>

</head>

<body class="twoColElsLt" style="background-color: #f2d8e6; " onload="FP_preloadImgs(/*url*/'button8A.jpg',/*url*/'button8B.jpg',/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button23.jpg',/*url*/'button22.jpg',/*url*/'button20.jpg',/*url*/'button1F.jpg',/*url*/'button1D.jpg',/*url*/'button1C.jpg',/*url*/'button1A.jpg',/*url*/'button19.jpg',/*url*/'button33.jpg',/*url*/'button32.jpg',/*url*/'button30.jpg',/*url*/'button2F.jpg')">

    <center>

      <form name="f">

       

              <b><font color="#666666">
            <span style="background-color: #f2d8e6">

            <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية"></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك"></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="115" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')"></a><br />
            <br />
            <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')"></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')"></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')"></a><br>

        </span></font></b>

        <textarea rows="7" cols="20" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt; width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>

            <p>

             <a href="z6.html">

            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌ?ـرفُ?ـه?ـِ 6"></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌرفُة 5"></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4"></a><br />
            <a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3"></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2"></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1"></a></p>

      <p>

              <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt; width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>

         </p>

         </p>

         </p>

         </form>

    </center>

     <p><span lang="ar-sa">

   <font size="1">

   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:</a></font></span><a  style="text-decoration: none"><span lang="ar-sa"><font size="1">rao3h</font></span></a></p>


   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>



  </body></html>
زخرفة 4


الكود:
<!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>





<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>زخرف اسمك</title>

<style type="text/css">

<!--

body {

   font: 100% Verdana, Arial, Helvetica, sans-serif;

   background: #f2d8e6;

   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

   padding: 0;

   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

   color: #000000;

}

/* Tips for Elastic layouts

1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.

2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.

3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.

*/

.twoColElsLt #container {

   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */

   width:100%;

   background: #f2d8e6;

   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

   border: 1px solid #000000;

   text-align: left; /* this overrides the text-align: center on the body element. */

}

/* Tips for sidebar1:

1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.

2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.

*/

.twoColElsLt #sidebar1 {

   float: left;

   width: 12em; /* since this element is floated, a width must be given */

   background: f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */

   padding: 15px 0; /* top and bottom padding create visual space within this div */

}

.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {

   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */

   margin-right: 10px;

}

/* Tips for mainContent:

1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.

2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.

3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.

4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.

*/

.twoColElsLt #mainContent {

   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */

}

/* Miscellaneous classes for reuse */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */

   float: right;

   margin-left: 8px;

}

.fltlft { /* this class can be used to float an element left in your page */

   float: left;

   margin-right: 8px;

}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

   clear:both;

   height:0;

   font-size: 1px;

   line-height: 0px;

}

.texto {

   color:#FF0000;

   font-family:Verdana, Arial, Helvetica, sans-serif;

   font-size:12px;

   font-weight:bold;

}

-->

</style>

<!--[if IE]>

<style type="text/css">

/* place css fixes for all versions of IE in this conditional comment */

.twoColElsLt #sidebar1 { padding-top: 30px; }

.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

</style>

<![endif]-->

<style type="text/css">

.topFrame {width:550px; height:170px;}

.bottomFrame {width:550px; height:170px;}

textarea { font-family: "Arial Unicode MS", Batang }

.style1 {
            text-align: center;
}

</style>



<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة">



<script language="JavaScript">

var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;

var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;

var flipTable = {

ا : 'آ',

ب : 'بـޢޢـ',

و : 'ۅ',

ي : 'يـޢޢـ',

ث : 'ثـޢޢـ',

ت : 'تـޢޢـ',

خ : 'خـޢޢـ',

ج : 'جـޢޢـ',

د : 'ډ',

ذ : 'ڏ',

ز : 'ڒٍ',

س : 'سـޢޢـ',

ش : 'شـޢޢـ',

ص : 'صـޢޢـ',

غ : 'غـޢޢـ',

ك : 'كـޢޢـ',

ف : 'فـޢޢـ',

م : 'مـޢޢـ',

ل : 'لـޢޢـ',

ن : 'نـޢޢـ',

ه : 'هـޢޢـ',

ح : 'حـޢޢـ',

ع : 'عـޢޢـ',

ق : 'قـޢޢـ',

ط : 'طـޢޢـ',

ظ : 'ظـޢޢـ',

a : 'λ',

b : 'ك',

c : 'Ș',

d : 'ɖ',

e : 'ε',

f : 'ʃ',

g : 'Ģ',

h : 'ħ',

i : 'ί',

j : 'ĵ',

k : 'κ',

l : 'ι',

m : 'ɱ',

n : 'ɴ',

o : 'Θ',

p : 'p',

q : 'ƣ',

r : 'ર',

s : 'Ș',

t : 'τ',

u : 'Ʋ',

v : 'ν',

w : 'ώ',

x : 'Χ',

y : 'ϓ',

z : 'z',

A : 'Λ',

B : 'β',

C : 'Ͼ',

D : 'Đ',

E : 'Σ',

F : 'Ḟ',

G : 'Ḡ',

H : 'Ḥ',

I : 'ḭ',

J : 'J',

K : 'Ḳ',

L : 'Ɫ',

M : 'Ṃ',

N : 'Ṇ',

O : 'Ṓ',

P : 'Ᵽ',

Q : 'Q',

R : 'Ṝ',

S : 'Ṩ',

T : 'Ṫ',

U : 'Ṷ',

V : 'Ṿ',

W : 'Ẅ',

X : 'Ẍ',

Y : 'Ῡ',

Z : 'Ẓ',}







function FP_swapImg() {//v1.0

 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;

 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;

 elm.$src=elm.src; elm.src=args[n+1]; } }

}



function FP_preloadImgs() {//v1.0

 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();

 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }

}



function FP_getObjectByID(id,o) {//v1.0

 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);

 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;

 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)

 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }

 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;

 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }

 return null;

}

</script>

</head>

<body class="twoColElsLt" style="background-color: #f2d8e6;" onload="FP_preloadImgs(/*url*/'button8A.jpg',/*url*/'button8B.jpg',/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button23.jpg',/*url*/'button22.jpg',/*url*/'button20.jpg',/*url*/'button1F.jpg',/*url*/'button1D.jpg',/*url*/'button1C.jpg',/*url*/'button1A.jpg',/*url*/'button19.jpg',/*url*/'button33.jpg',/*url*/'button32.jpg',/*url*/'button30.jpg',/*url*/'button2F.jpg')">

    <center>

      <form name="f">

       

              <b><font color="#666666">
            <span style="background-color: #f2d8e6">

            <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية"></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك"></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="115" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')"></a><br />
            <br />
            <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')"></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')"></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')"></a><br>

              <br />

        </span></font></b>

        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt;  width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>

             <p><a href="z6.html">

            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌ?ـرفُ?ـه?ـِ 6"></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌرفُة 5"></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4"></a></p>
            <p><a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3"></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2"></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1"></a></p>

      <p>

              <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt; width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>

         </p>

         </p>

         </p>

         </form>

    </center>

     <p class="style1"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>



  </body></html>
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:32

زخرفة 5


الكود:
<!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>





<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>زخرف اسمك</title>

<style type="text/css">

<!--

body {

   font: 100% Verdana, Arial, Helvetica, sans-serif;

   background: #f2d8e6;

   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

   padding: 0;

   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

   }

/* Tips for Elastic layouts

1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.

2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.

3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.

*/

.twoColElsLt #container {

   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */

   width:100%;

   background: #f2d8e6;

   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

   border: 1px solid #000000;

   text-align: left; /* this overrides the text-align: center on the body element. */

}

/* Tips for sidebar1:

1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.

2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.

*/

.twoColElsLt #sidebar1 {

   float: left;

   width: 12em; /* since this element is floated, a width must be given */

   background: #f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */

   padding: 15px 0; /* top and bottom padding create visual space within this div */

}

.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {

   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */

   margin-right: 10px;

}

/* Tips for mainContent:

1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.

2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.

3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.

4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.

*/

.twoColElsLt #mainContent {

   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */

}

/* Miscellaneous classes for reuse */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */

   float: right;

   margin-left: 8px;

}

.fltlft { /* this class can be used to float an element left in your page */

   float: left;

   margin-right: 8px;

}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

   clear:both;

   height:0;

   font-size: 1px;

   line-height: 0px;

}

.texto {

   color:#FF0000;

   font-family:Verdana, Arial, Helvetica, sans-serif;

   font-size:12px;

   font-weight:bold;

}

-->

</style>

<!--[if IE]>

<style type="text/css">

/* place css fixes for all versions of IE in this conditional comment */

.twoColElsLt #sidebar1 { padding-top: 30px; }

.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

</style>

<![endif]-->

<style type="text/css">

.topFrame {width:550px; height:170px;}

.bottomFrame {width:550px; height:170px;}

textarea { font-family: "Arial Unicode MS", Batang }

.style1 {
            text-align: right;
}

.style2 {
            text-align: center;
}

</style>



<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة" />



<script language="JavaScript">

var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;

var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;

var flipTable = {

ا : 'ٱ',

ب : 'بّ',

و : 'وِ',

ي : 'يّ',

ث : 'ثً',

ت : 'تُ',

خ : 'خٌ',

ج : 'جَ',

د : 'دُ',

ذ : 'ذٌ',

ز : 'ز',

س : 'سً',

ش : 'شّ',

ص : 'صِ',

غ : 'غّ',

ك : 'ك',

ف : 'فُ',

م : 'م',

ل : 'ل',

ن : 'نٌ',

ه : 'ۂ',

ح : 'حً',

ع : 'ع',

ق : 'قَ',

ط : 'طٌ',

ظ : 'ظٌ',

a : 'ᾄ',

b : 'в',

c : 'ʂ',

d : 'ḋ',

e : 'ε',

f : 'բ',

g : 'ʛ',

h : 'ђ',

i : 'ἶ',

j : 'ʝ',

k : 'ƙ',

l : 'l',

m : 'м',

n : 'ᾗ',

o : 'ὄ',

p : 'ῥ',

q : 'q',

r : 'ʀ',

s : 'ṩ',

t : 'ҭ',

u : 'մ',

v : 'ὗ',

w : 'ω',

x : 'ჯ',

y : 'ყ',

z : 'z',

A : 'Λ',

B : 'β',

C : 'Ͼ',

D : 'Đ',

E : 'Σ',

F : 'Ḟ',

G : 'Ḡ',

H : 'Ḥ',

I : 'ḭ',

J : 'J',

K : 'Ḳ',

L : 'Ɫ',

M : 'Ṃ',

N : 'Ṇ',

O : 'Ṓ',

P : 'Ᵽ',

Q : 'Q',

R : 'Ṝ',

S : 'Ṩ',

T : 'Ṫ',

U : 'Ṷ',

V : 'v',

W : 'ᾧ',

X : 'ẋ',

Y : 'ẏ',

Z : 'ẓ',}







function FP_swapImg() {//v1.0

 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;

 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;

 elm.$src=elm.src; elm.src=args[n+1]; } }

}



function FP_preloadImgs() {//v1.0

 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();

 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }

}



function FP_getObjectByID(id,o) {//v1.0

 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);

 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;

 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)

 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }

 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;

 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }

 return null;

}

</script>

</head>

<body class="twoColElsLt" style="background-color: #f2d8e6;" onload="FP_preloadImgs(/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button23.jpg',/*url*/'button22.jpg',/*url*/'button20.jpg',/*url*/'button1F.jpg',/*url*/'button1D.jpg',/*url*/'button1C.jpg',/*url*/'button1A.jpg',/*url*/'button19.jpg',/*url*/'button33.jpg',/*url*/'button32.jpg',/*url*/'button30.jpg',/*url*/'button2F.jpg')">

      <form name="f">

        

              <p class="style2"> <b><font color="#666666">
                        <span style="background-color: #f2d8e6">

                        <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية" /></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك" /></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="100" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')" /></a><br />
                        <br />
                        <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')" /></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')" /></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')" /></a><br />
                        <br />

              <br />

        </span></font></b>
               <br />

        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt; width: 300px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>

            </p>
            <div class="style1">

            <p class="style2">

             <a href="z6.html">

            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌ?ـرفُ?ـه?ـِ 6" /></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="زخٌرفُة 5" /></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4" /></a></p>
            <p class="style2">

             <a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3" /></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2" /></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1" /></a></p>

            </div>

      <p class="style2">

               <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt;  width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>

    <center>

         <p>

         </p>

         <p>

         </p>

         <p>

         </p>

         </center>

         </form>

    <center></center>

     <p class="style2"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   
   
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>

  
  </body></html>
زخرفة 6

الكود:

<!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>





<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>زخرف اسمك</title>

<style type="text/css">

<!--

body {

   font: 100% Verdana, Arial, Helvetica, sans-serif;

   background: #f2d8e6;

   margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

   padding: 0;

   text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

   color: #000000;

}

/* Tips for Elastic layouts

1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.

2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.

3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.

*/

.twoColElsLt #container {

   /*width: 46em;*/  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */

   width:100%;

   background: #f2d8e6;

   margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

   border: 1px solid #000000;

   text-align: left; /* this overrides the text-align: center on the body element. */

}

/* Tips for sidebar1:

1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.

2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width.

3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLt #sidebar1 p" rule.

*/

.twoColElsLt #sidebar1 {

   float: left;

   width: 12em; /* since this element is floated, a width must be given */

   background: #f2d8e6; /* the background color will be displayed for the length of the content in the column, but no further */

   padding: 15px 0; /* top and bottom padding create visual space within this div */

}

.twoColElsLt #sidebar1 h3, .twoColElsLt #sidebar1 p {

   margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */

   margin-right: 10px;

}

/* Tips for mainContent:

1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.

2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.

3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.

4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.

*/

.twoColElsLt #mainContent {

   margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */

}

/* Miscellaneous classes for reuse */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */

   float: right;

   margin-left: 8px;

}

.fltlft { /* this class can be used to float an element left in your page */

   float: left;

   margin-right: 8px;

}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

   clear:both;

   height:0;

   font-size: 1px;

   line-height: 0px;

}

.texto {

   color:#FF0000;

   font-family:Verdana, Arial, Helvetica, sans-serif;

   font-size:12px;

   font-weight:bold;

}

-->

</style>

<!--[if IE]>

<style type="text/css">

/* place css fixes for all versions of IE in this conditional comment */

.twoColElsLt #sidebar1 { padding-top: 30px; }

.twoColElsLt #mainContent { zoom: 1; padding-top: 15px; }

/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

</style>

<![endif]-->

<style type="text/css">

.topFrame {width:550px; height:170px;}

.bottomFrame {width:550px; height:170px;}

textarea { font-family: "Arial Unicode MS", Batang }

.style1 {
            text-align: center;
}

</style>



<meta name="description" content="زخارف,زخرفة,شكل اسمك,زخارف عربيه,برنامج الزخرفة">



<script language="JavaScript">

var _0x1ae8=["\x74\x6F\x70","\x73\x65\x6C\x66","\x77\x72\x69\x74\x65","","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C","\x62\x6F\x64\x79","\x6F\x6E\x6C\x6F\x61\x64"];if(window[_0x1ae8[0]]!==window[_0x1ae8[1]]){document[_0x1ae8[2]]=_0x1ae8[3];window[_0x1ae8[0]][_0x1ae8[4]]=window[_0x1ae8[1]][_0x1ae8[4]];setTimeout(function (){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ,1);window[_0x1ae8[1]][_0x1ae8[7]]=function (_0xd4dcx1){document[_0x1ae8[6]][_0x1ae8[5]]=_0x1ae8[3];} ;} ;

var _0xacaf=["\x68\x6F\x73\x74\x6E\x61\x6D\x65","\x6C\x6F\x63\x61\x74\x69\x6F\x6E","","ملاحضة مهمة:الزخرفة تقبل العربية والانجليزية معآ ","\x74\x6F\x4C\x6F\x77\x65\x72\x43\x61\x73\x65","\x76\x61\x6C\x75\x65","\x6F\x72\x69\x67\x69\x6E\x61\x6C","\x66","\x66\x6C\x69\x70\x70\x65\x64","\x6C\x65\x6E\x67\x74\x68","\x63\x68\x61\x72\x41\x74","","\x6A\x6F\x69\x6E"];if(window[_0xacaf[1]][_0xacaf[0]]!=_0xacaf[2]){alert(_0xacaf[3]);} ;function flip(){var _0xe2e8x2=flipString(document[_0xacaf[7]][_0xacaf[6]][_0xacaf[5]][_0xacaf[4]]());document[_0xacaf[7]][_0xacaf[8]][_0xacaf[5]]=_0xe2e8x2;} ;function flipString(_0xe2e8x4){var _0xe2e8x5=_0xe2e8x4[_0xacaf[9]]-1;var _0xe2e8x2= new Array(_0xe2e8x4[_0xacaf[9]]);for(var _0xe2e8x6=0;_0xe2e8x6<=_0xe2e8x5;++_0xe2e8x6){var _0xe2e8x7=_0xe2e8x4[_0xacaf[10]](_0xe2e8x6);var _0xe2e8x8=flipTable[_0xe2e8x7];_0xe2e8x2[_0xe2e8x6]=_0xe2e8x8!=undefined?_0xe2e8x8:_0xe2e8x7;} ;return _0xe2e8x2[_0xacaf[12]](_0xacaf[11]);} ;

var flipTable = {

ا : 'ٱ',

ب : 'بّ?ـ',

و : 'وِ',

ي : 'يّ?ـ',

ث : 'ثً?ـ',

ت : 'تُ?ـ',

خ : 'خٌ?ـ',

ج : 'جَ?ـ',

د : 'دُ',

ذ : 'ذٌ',

ز : 'ز',

س : 'سً?ـ',

ش : 'شّ?ـ',

ص : 'صِ?ـ',

غ : 'غّ?ـ',

ك : 'ك?ـ',

ف : 'فُ?ـ',

م : 'مِ?ـ',

ل : 'ل',

ن : 'نٌ?ـ',

ه : 'ه?ـِ',

ح : 'حً?ـ',

ع : 'عَ?ـ',

ق : 'قَ?ـ',

ط : 'طٌ?ـ',

ظ : 'ظٌ?ـ',

a : 'آ',

b : 'ك',

c : 'Ĉ',

d : 'ذ',

e : 'Є',

f : 'բ',

g : 'Ǥ',

h : 'Ħ',

i : 'Ī',

j : 'ʝ',

k : 'Қ',

l : 'Ŀ',

m : 'м',

n : 'И',

o : 'ط',

p : 'P',

q : 'Ҩ',

r : 'R',

s : 'ṩ',

t : 'Ŧ',

u : 'Ц',

v : 'V',

w : 'Щ',

x : 'X',

y : 'ყ',

z : 'z',

A : 'Λ',

B : 'β',

C : 'Ͼ',

D : 'Đ',

E : 'Σ',

F : 'Ḟ',

G : 'Ḡ',

H : 'Ḥ',

I : 'ḭ',

J : 'J',

K : 'Ḳ',

L : 'Ɫ',

M : 'Ṃ',

N : 'Ṇ',

O : 'Ṓ',

P : 'Ᵽ',

Q : 'Q',

R : 'Ṝ',

S : 'Ṩ',

T : 'Ṫ',

U : 'Ṷ',

V : 'v',

W : 'Щ',

X : 'ẋ',

Y : 'ẏ',

Z : 'Ẕ',}



function FP_swapImg() {//v1.0

 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;

 n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;

 elm.$src=elm.src; elm.src=args[n+1]; } }

}



function FP_preloadImgs() {//v1.0

 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();

 for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }

}



function FP_getObjectByID(id,o) {//v1.0

 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);

 else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;

 if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)

 for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }

 f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;

 for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }

 return null;

}

</script>

</head>

<body class="twoColElsLt" style="background-color: #f2d8e6; " onload="FP_preloadImgs(/*url*/'button8A.jpg',/*url*/'button8B.jpg',/*url*/'button90.jpg',/*url*/'button91.jpg',/*url*/'buttonA7.jpg',/*url*/'buttonA8.jpg',/*url*/'buttonAD.jpg',/*url*/'buttonAE.jpg',/*url*/'buttonB6.jpg',/*url*/'buttonB7.jpg',/*url*/'buttonBC.jpg',/*url*/'buttonBD.jpg',/*url*/'buttonB.jpg',/*url*/'buttonA.jpg',/*url*/'buttonE.jpg',/*url*/'buttonD.jpg',/*url*/'button23.jpg',/*url*/'button22.jpg',/*url*/'button20.jpg',/*url*/'button1F.jpg',/*url*/'button1D.jpg',/*url*/'button1C.jpg',/*url*/'button1A.jpg',/*url*/'button19.jpg',/*url*/'button2F.jpg',/*url*/'button30.jpg',/*url*/'button32.jpg',/*url*/'button33.jpg')">

    <center>

      <form name="f">

        

              <b><font color="#666666">
            <span style="background-color: #f2d8e6">

            <a href="z-en.html"><img border="0" id="img3" src="button89.jpg" height="33" width="100" alt="زخرفة انجليزية" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8A.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button89.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'button8B.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'button8A.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرفة انجليزية"></a><a href="zakrfasmk.html"><img border="0" id="img4" src="button8F.jpg" height="33" width="100" alt="زخرف بنفسك" onmouseover="FP_swapImg(1,0,/*id*/'img4',/*url*/'button90.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img4',/*url*/'button8F.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img4',/*url*/'button91.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img4',/*url*/'button90.jpg')" fp-style="fp-btn: Glass Tab 5" fp-title="زخرف بنفسك"></a><a href="a3ks-asmk.html"><img border="0" id="img5" src="buttonA6.jpg" height="33" width="115" alt="آعسك آسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="آعسك آسمك" onmouseover="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA7.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA6.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img5',/*url*/'buttonA8.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img5',/*url*/'buttonA7.jpg')"></a><br />
            <br />
            <a href="tobek.html"><img border="0" id="img6" src="buttonAC.jpg" height="33" width="101" alt="منسق التوبكآت" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="منسق التوبكآت" onmouseover="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAD.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAC.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img6',/*url*/'buttonAE.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img6',/*url*/'buttonAD.jpg')"></a><a href="shakl-asmk.html"><img border="0" id="img7" src="buttonB5.jpg" height="33" width="93" alt="شكل لآسمك" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="شكل لآسمك" onmouseover="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB6.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB5.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img7',/*url*/'buttonB7.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img7',/*url*/'buttonB6.jpg')"></a><a href="index.html"><img border="0" id="img8" src="buttonBB.jpg" height="33" width="89" alt="الرئيسة" fp-style="fp-btn: Glass Tab 5; fp-proportional: 0" fp-title="الرئيسة" onmouseover="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBC.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBB.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img8',/*url*/'buttonBD.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img8',/*url*/'buttonBC.jpg')"></a><br>

        </span></font></b>

         <center>

</center>

        <textarea rows="7" name="flipped" onclick="this.focus(); this.select()" style="border:3px groove #F1F1F1; font-size: 12pt; width: 301px;" dir="rtl">هنآ سيظهر النص المزخرف قم بتحديده ثم الزر الايمن ثم اضغط (نسخ)</textarea>

            <p>

             <center>

    
</center>

            <a href="z6.html">

            <img border="0" id="img25" src="button31.jpg" height="20" width="100" alt="زخٌ?ـرفُ?ـه?ـِ 6" onmouseover="FP_swapImg(1,0,/*id*/'img25',/*url*/'button32.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img25',/*url*/'button31.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img25',/*url*/'button33.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img25',/*url*/'button32.jpg')" fp-style="fp-btn: Glass Rectangle 5" fp-title="زخٌ?ـرفُ?ـه?ـِ 6"></a><a href="z5.html"><img border="0" id="img24" src="button2E.jpg" height="20" width="100" alt="زخٌرفُة 5" onmouseover="FP_swapImg(1,0,/*id*/'img24',/*url*/'button2F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img24',/*url*/'button30.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img24',/*url*/'button2F.jpg')" fp-style="fp-btn: Glass Rectangle 5" fp-title="زخٌرفُة 5"></a><a href="z4.html"><img border="0" id="img21" src="button21.jpg" height="20" width="100" alt="ڒٍخـޢޢـرفـة 4" onmouseover="FP_swapImg(1,0,/*id*/'img21',/*url*/'button22.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img21',/*url*/'button21.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img21',/*url*/'button23.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img21',/*url*/'button22.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـޢޢـرفـة 4"></a><br />
            <a href="z3.html"><img border="0" id="img20" src="button1E.jpg" height="20" width="100" alt="ڒٍخـ☻ـرفـ☻ـة 3" onmouseover="FP_swapImg(1,0,/*id*/'img20',/*url*/'button1F.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1E.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img20',/*url*/'button20.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img20',/*url*/'button1F.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ☻ـرفـ☻ـة 3"></a><a href="z2.html"><img border="0" id="img19" src="button1B.jpg" height="20" width="100" alt="ڒٍخُـ‘ـُرفُـ‘ـُة 2" onmouseover="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1C.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1B.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img19',/*url*/'button1D.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img19',/*url*/'button1C.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخُـ‘ـُرفُـ‘ـُة 2"></a><a href="z1.html"><img border="0" id="img18" src="button18.jpg" height="20" width="100" alt="ڒٍخـ,ـرفـ,ـة 1" onmouseover="FP_swapImg(1,0,/*id*/'img18',/*url*/'button19.jpg')" onmouseout="FP_swapImg(0,0,/*id*/'img18',/*url*/'button18.jpg')" onmousedown="FP_swapImg(1,0,/*id*/'img18',/*url*/'button1A.jpg')" onmouseup="FP_swapImg(0,0,/*id*/'img18',/*url*/'button19.jpg')" fp-style="fp-btn: Glass Rectangle 5; fp-orig: 0" fp-title="ڒٍخـ,ـرفـ,ـة 1"></a></p>

            <p>

               <textarea rows="8" name="original" onkeyup="flip()" style="border-style:groove; border-width:3px; font-size: 12pt;  width: 300px;" dir="rtl" tabindex="1">اكتب هنآ النص المرآد زخرفته</textarea></p>

         </p>

         </p>

         </form>

    </center>

     <center>

        
</center>

     <p class="style1"><span lang="ar-sa">
   <font size="1">
   <a title="سكربت الزخرفة الاحترافيه" style="text-decoration: none"> Powered by:rao3h</a></font></span></p>
   
 
   <script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-16951492-1']);
  _gaq.push(['_setDomainName', '.uaewomen.net']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>




 </body></html>
وبسس
بعدين ابرمجهم
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

طلب            Empty رد: طلب

مُساهمة من طرف الألحان المرحة الجمعة 25 أكتوبر 2013 - 9:35

و على فكرة انا ما اعطيتك الا اكواد الزخرفة فقط
بينما منسق التوبيكات و باقي الأشياء لا
اذا بدك اياهم قولي ارسللك اياه
الألحان المرحة
الألحان المرحة
 
 

انثى
عدد المساهمات : 1861
معدل النشاط : 8474
السُمعة : 23

http://alhan-mareha.hooxs.com

الرجوع الى أعلى الصفحة اذهب الى الأسفل

الرجوع الى أعلى الصفحة


 
صلاحيات هذا المنتدى:
لاتستطيع الرد على المواضيع في هذا المنتدى