لديك حساب بالفعل؟ دخول
دخول  سجل الأن 
[تحسين] Add headings and paragraphs
If you have used Microsoft Word, you will be familiar with the built in styles for headings of differing importance. In HTML there are six levels of headings. H1 is the most important, H2 is slightly less important, and so on down to H6, the least important. Here is how to add an important heading: <h1>An important heading</h1> and here is a slightly less important heading: <h2>A slightly less important heading</h2>
heading
<h1>An important heading</h1>
  
<h2>A slightly less important heading</h2> 
  

حاول بنفسك »اضغط على "حاول بنفسك" لكى ترى كيف تعمل فى الحقيقة

Each paragraph you write should start with a <p> tag. The </p> is optional, unlike the end tags for elements like headings. For example:
paragraph
<p>This is the first paragraph.</p>

<p>This is the second paragraph.</p>

حاول بنفسك »اضغط على "حاول بنفسك" لكى ترى كيف تعمل فى الحقيقة

23 / سبتمبر / 2011 الساعة 17:41