diff options
Diffstat (limited to 'files/he/web/html/element/section/index.html')
-rw-r--r-- | files/he/web/html/element/section/index.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/files/he/web/html/element/section/index.html b/files/he/web/html/element/section/index.html new file mode 100644 index 0000000000..592b45e0dd --- /dev/null +++ b/files/he/web/html/element/section/index.html @@ -0,0 +1,67 @@ +--- +title: '<section>: תגית לסימון איזור כללי' +slug: Web/HTML/Element/section +translation_of: Web/HTML/Element/section +--- +<div>{{HTMLRef}}</div> + +<p dir="rtl">תגית <strong><code><section></code></strong> מייצגת חלק כללי במסמך ה-HTML. <br> + אזור זה מורכב מכותרת ותוכן ומשמשת להגדרת פרק בספר, אזור חדשות וכו'.</p> + +<div>{{EmbedInteractiveExample("pages/tabbed/section.html", "tabbed-standard")}}</div> + +<p class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples </a> and send us a pull request.</p> + +<table> + <tbody> + <tr> + <th>קטגוריה</th> + <td>תגיות לארגון תוכן</td> + </tr> + <tr> + <th>תוכן מורשה</th> + <td> + <p><a>, <abbr>, <address>, <article>, <aside>, <audio>, <b>,<bdo>, <bdi>, <blockquote>, <br>, <button>, <canvas>, <cite>, <code>, <command>, <data>, <datalist>, <del>, <details>, <dfn>, <div>, <dl>, <em>, <embed>, <fieldset>, <figure>, <footer>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <header>, <hgroup>, <hr>, <i>, <iframe>, <img>, <input>, <ins>, <kbd>, <keygen>, <label>, <main>, <map>, <mark>, <math>, <menu>, <meter>, <nav>, <noscript>, <object>, <ol>, <output>, <p>, <pre>, <progress>, <q>, <ruby>, <s>, <samp>, <script>, <section>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <svg>, <table>, <template>, <textarea>, <time>, <ul>, <var>, <video>, <wbr></p> + </td> + </tr> + <tr> + <th>תגיות הורים מורשות</th> + <td><a>, <abbr>, <address>, <article>, <aside>, <audio>, <b>,<bdo>, <bdi>, <blockquote>, <br>, <button>, <canvas>, <cite>, <code>, <command>, <data>, <datalist>, <del>, <details>, <dfn>, <div>, <dl>, <em>, <embed>, <fieldset>, <figure>, <footer>, <form>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <header>, <hgroup>, <hr>, <i>, <iframe>, <img>, <input>, <ins>, <kbd>, <keygen>, <label>, <main>, <map>, <mark>, <math>, <menu>, <meter>, <nav>, <noscript>, <object>, <ol>, <output>, <p>, <pre>, <progress>, <q>, <ruby>, <s>, <samp>, <script>, <section>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <svg>, <table>, <template>, <textarea>, <time>, <ul>, <var>, <video>, <wbr><br> + </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><section> + <h1>Heading</h1> + <p>Bunch of awesome content</p> +</section></pre> + + <h2 dir="rtl" id="דוגמא_-_כותרת_ותמונה">דוגמא - כותרת ותמונה</h2> + + <pre><section> + <h2>Heading</h2> + <img src="bird.jpg" alt="bird"> +</section></pre> + </dt> +</dl> + +<h2 dir="rtl" id="ראה_גם">ראה גם</h2> + +<ul> + <li>{{HTMLElement("header")}}</li> + <li>{{HTMLElement("aside")}}</li> + <li>{{HTMLElement("div")}}</li> +</ul> |