الاثنين، 18 أغسطس 2014

الفقرات في HTML

المشاركة رقم:57
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From

http://www.w3schools.com

الفقرات في HTML
HTML Paragraphs

تُقَّسم مستندات HTML إلى فقرات.
HTML documents are divided into paragraphs.

- الفقرات في HTML
يتم تعريف الفقرات باستخدام الوسم <p>.
مثال:
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
- HTML Paragraphs
Paragraphs are defined with the <p> tag.
Example
<p>This is a paragraph</p>
<p>This is another paragraph</p>
---------------------------------------------------------

ترويسات (رؤوس) أو عناوين HTML

المشاركة رقم:56
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From

http://www.w3schools.com

ترويسات (رؤوس) أو عناوين HTML
HTML Headings

العناوين مهمة في مستندات HTML
Headings are important in HTML documents.

-عناوين HTML
يتم تعريف العناوين باستخدام الوسوم <h1> إلى <h6>.
<h1> يُعرف العنوان الأكثر أهمية. <h6> يُعرف العنوان الأقل أهمية.
مثال:
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
- HTML Headings
Headings are defined with the <h1> to <h6> tags.
<h1> defines the most important heading. <h6> defines the least important heading.
Example
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
---------------------------------------------------------

سمات HTML

المشاركة رقم:55
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From
http://www.w3schools.com

سمات HTML
HTML Attributes

السمات تزود معلومات إضافية عن عناصر HTML.
Attributes provide additional information about HTML elements.
---------------------------------------------------------
- سمات HTML
* عناصر HTML يمكن أن تتضمن سمات
* السمات تزود معلومات إضافية عن عنصر
* السمات دائماً محدد في وسم البداية
* تأتي السمات على شكل مزدوج اسم/قيمة مثل: name="value"
- HTML Attributes
* HTML elements can have attributes
* Attributes provide additional information about an element
* Attributes are always specified in the start tag
* Attributes come in name/value pairs like: name="value"
---------------------------------------------------------

الجمعة، 15 أغسطس 2014

عناصر HTML

المشاركة رقم:54
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From
http://www.w3schools.com

عناصر HTML
HTML Elements

- عناصر HTML
عناصر HTML تكتب باستخدام وسم البداية و وسم النهاية والمحتويات تكون بينهما
عنصر HTML هو كل شيء من وسم البداية إلى وسم النهاية
بعض عناصر HTML ليس لها وسم نهاية

- HTML Elements
HTML elements are written with a start tag, with an end tag, with the content in between:
<tagname>content</tagname>
The HTML element is everything from the start tag to the end tag:
<p>My first paragraph.</p>

Some HTML elements do not have an end tag.



---------------------------------------------------------
- وسم البداية غالبا ما يقال عنه.
وسم الفتح
 - The start tag is often called the. 
opening tag
---------------------------------------------------------
- وسم النهاية غالبا ما يقال عنه.
وسم النهاية
- The end tag is often called the. 
closing tag
---------------------------------------------------------

أساسيات HTML

المشاركة رقم:53
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From

http://www.w3schools.com
أساسيات HTML
HTML Basics

- مستندات HTML
كل مستندات HTML يجب أن تبدأ بتعريف النوع: <!DOCTYPE html>.
مستند HTML نفسه يبدأ بـ <html> وينتهي بـ </html>.
الجزء المخفي من مستند HTML هو بين <body>  و </body>.
- HTML Documents
All HTML documents must start with a type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.

مثال Example
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My First paragraph.</p>
</body>
</html>

---------------------------------------------------------
- عناوين HTML
يتم تعريف أو الإعلان عن عناوين HTML بالوسوم من <h1> إلى <h6>
مثال
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
- HTML headings
HTML headings are defined with the <h1> to <h6> tags.
Example
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
---------------------------------------------------------
- الفقرات في HTML
يتم تعريف الفقرات في HTML  بواسطة الوسم <p>
مثال
<p>This is a paragraph.</p>
<p>this is another paragraph.</p>
- HTML Paragraphs
HTML paragraphs are defined with the <p> tag.
Example
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
---------------------------------------------------------
- روابط HTML
يتم تعريف روابط HTML بواسطة الوسم <a>
مثال
<a href="http://www.w3school.com">This is a link</a>
- HTML Links
HTML links are defined with the <a> tag.
Example
<a href="http://www.w3schools.com">This is a link</a>
---------------------------------------------------------
- الصور في HTML
يتم تعريف الصور في HTML بواسطة الوسم <img>
مثال
<img src="w3school.jpg" alt="w3school.com" width="104" height="142">
- HTML Images
HTML images are defined with the <img> tag.
Example

<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">

الثلاثاء، 12 أغسطس 2014

محررات إتش تي إم إل HTML Editors

المشاركة رقم:52
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل 5  HTML5 
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From
http://www.w3schools.com

محررات إتش تي إم إل   HTML Editors

كتابة HTML باستخدام برنامج المفكرة أو محرر النصوص

Write HTML Using Notepad or TextEdit

- يمكن تحرير HTML بواسطة محررات HTML احترافية مثل:
* Adobe Dreamweaver
* Microsoft Expression Web
* CoffeeCup HTML Editor
على أية حال، لتعلم HTML يوصى باستخدام محرر نصوص مثل Notepad لأنظمة ويندوز أو TextEdit للماك.
محرر أو محررات HTML هي البرامج المستخدمة لكتابة تعليمات HTML

- Write HTML Using Notepad or TextEdit
HTML can be edited by using a professional HTML editor like:
* Adobe Dreamweaver
* Microsoft Expression Web
* CoffeeCup HTML Editor
However, for learning HTML we recommend a text editor like Notepad (PC) or TextEdit (Mac).
---------------------------------------------------------

الاثنين، 11 أغسطس 2014

مقدمة إلى HTML5

المشاركة رقم:51
سلسلة احتراف برمجة صفحات الويب  Web Pages Programming Tutorial
إتش تي إم إل  HTML5  
_________________________________
منقول ومترجم للعربية من Moved and Translated to Arabic From
http://www.w3schools.com

مقدمة إلى HTML5  
HTML5 Introduction
- مثال HTML Example

<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>my first paragraph.</p>
</body>
</html>
---------------------------------------------------------
-  توضيح المثال.
* كلمة DOCTYPE يتم من خلالها تحديد نوع المستند والإعلان عنه أو تحديده
* النص بين <html> و </html> يصف صفحة الويب
* النص بين <body> و </body> هو الجزء المخفي من الصفحة أو ما يتم خلف الكواليس عند تشغيل
   الصفحة  
* النص بين <h1> و </h1> يُعرض كعنوان
* النص بين <p> و </p1> يُعرض كفقرة
- Example Explained
* The DOCTYPE declaration defines the document type
* The text between <html> and </html> describes the web page
*The text between <body> and </body> is the visible page content
* The text between <h1> and </h1> is displayed as a heading
*The text between <p> and </p> is displayed as a paragraph
---------------------------------------------------------

الجمعة، 8 أغسطس 2014

التوجيه Routing

المشاركة رقم:50
الشهادة CompTIA Network+ 
الفصل 3 : أجهزة توصيل الشبكة CHAPTER 3: NETWORK CONNECTION HARDWARE 
_________________________________

التوجيه Routing



- الموجه (router) هو.
جهاز يوصل شبكتين ببعضهما، مما يشكل شبكة بينية.
- A router is.
a device that connects two networks together, forming an internetwork.
------------------------------------------------------------
- تعمل الموجهات في.
طبقة الشبكة للطراز OSI المرجعي.
- routers function at.
the network layer of the OSI reference model.
------------------------------------------------------------