1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
---
title: '<b>: תגית להדגשת טקסט'
slug: Web/HTML/Element/b
translation_of: Web/HTML/Element/b
---
<div>{{HTMLRef}}</div>
<p dir="rtl">תגית <strong><code><b></code></strong> מציגה טקסט באופן מודגש, כיום מומלץ להשתמש בתגית <strong><code><string></code></strong> כדי לציין שהטקסט בעל חשיבות. בנוסף ניתן להשתמש בגיליונות סגנון מדורגים (CSS) באמצעות <a href="https://developer.mozilla.org/he/docs/Web/CSS/font-weight">font-weight</a>.</p>
<p dir="rtl">{{EmbedInteractiveExample("pages/tabbed/b.html", "tabbed-standard")}}</p>
<table>
<tbody>
<tr>
<th>קטגוריה</th>
<td>תגיות מסוג Inline.</td>
</tr>
<tr>
<th>תוכן מורשה</th>
<td>
<p><code><abbr></code>, <code><audio></code>, <code><b></code>, <code><bdo></code>, <code><br></code>, <code><button></code>, <code><canvas></code>, <code><cite></code>, <code><code></code>, <code><command></code>, <code><data></code>, <code><datalist></code>, <code><dfn></code>, <code><em></code>, <code><embed></code>, <code><i></code>, <code><iframe></code>, <code><img></code>, <code><input></code>, <code><kbd></code>, <code><keygen></code>, <code><label></code>, <code><mark></code>, <code><math></code>, <code><meter></code>, <code><noscript></code>, <code><object></code>, <code><output></code>, <code><progress></code>, <code><q></code>, <code><ruby></code>, <code><samp></code>, <code><script></code>, <code><select></code>, <code><small></code>, <code><span></code>, <code><strong></code>, <code><sub></code>, <code><sup></code>, <code><svg></code>, <code><textarea></code>, <code><time></code>, <code><var></code>, <code><video></code>, <code><wbr></code></p>
</td>
</tr>
<tr>
<th>תגיות הורים מורשות</th>
<td>תגית זו מורשת להופיע בגוף המסמך אך אינה חייבת להיות כפופה בצורה ישירה אל תגית {{HTMLElement("body")}}.</td>
</tr>
<tr>
<th scope="row">ממשק DOM</th>
<td>{{domxref("HTMLElement")}}</td>
</tr>
</tbody>
</table>
<h2 dir="rtl" id="תארים">תארים</h2>
<p dir="rtl">תגית זו נכללת ברשימת <a href="https://developer.mozilla.org/he/docs/Web/HTML/%D7%AA%D7%90%D7%A8%D7%99%D7%9D_%D7%92%D7%9C%D7%95%D7%91%D7%9C%D7%99%D7%99%D7%9D">התארים הגלובליים</a>.</p>
<dl>
<dt dir="rtl">
<h2 dir="rtl" id="דוגמא">דוגמא</h2>
<pre><p>
This article describes several <b class="keywords">text-level</b> elements.
It explains their usage in an <b class="keywords">HTML</b> document.
</p>
</pre>
</dt>
</dl>
<h2 dir="rtl" id="הערות">הערות</h2>
<p dir="rtl"><u>מה ההבדל בין תגית <strong><code><strong></code></strong> לתגית <strong><code><b></code></strong>?</u><br>
שתיהן מדגישות את הטקסט בתוך התגית, אך משמעותה של תגית <b> היא השפעה על העיצוב בלבד. מאידך, כאשר גולשים אל אתר מותאם ולוחצים על הקראה, הדפדפן רואה את תגית <strong> ויודע שיש צורך לקרוא את הטקסט ולהדגיש את הנמצא תחתיה.</p>
<p dir="rtl">תגיות נוספות המשמשות להדגשת טקסט: {{HTMLElement("em")}}, {{HTMLElement("mark")}}. </p>
<h2 dir="rtl" id="ראה_גם">ראה גם</h2>
<ul>
<li>{{HTMLElement("a")}}</li>
<li>{{HTMLElement("em")}}</li>
<li>{{HTMLElement("strong")}}</li>
<li>{{HTMLElement("small")}}</li>
<li>{{HTMLElement("cite")}}</li>
<li>{{HTMLElement("q")}}</li>
<li>{{HTMLElement("dfn")}}</li>
</ul>
|