משתמש:Men770/טיוטה: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
אין תקציר עריכה |
אין תקציר עריכה |
||
שורה 7: | שורה 7: | ||
<div id="London" class="tabcontent"> | <div id="London" class="tabcontent"> | ||
<h3>משיח</h3> | <h3>משיח</h3> | ||
<p>{{ | <p>{{:עמוד ראשי}}</p> | ||
</div> | </div> | ||
גרסה מ־06:20, 14 באוגוסט 2017
<html>
<button class="tablinks" onclick="openCity(event, 'London')">משיח</button> <button class="tablinks" onclick="openCity(event, 'Paris')">Paris</button> <button class="tablinks" onclick="openCity(event, 'Tokyo')">Tokyo</button>
</html>
משיח
חב"דפדיה הינה אנציקלופדיה חב"דית, חופשית לקריאה, כתיבה ועריכה. מטרתנו היא הפצת תורת חסידות חב"ד תוך דגש על ענייני גאולה ומשיח בשפה פשוטה וברורה. המיזם עוסק גם בנושאים אחרים הקשורים בחסידות חב"ד וביהדות בכלל, מושגים, אישים והיסטוריה.
בחב"דפדיה יש כעת: 11,237 ערכים. הצטרפו למיזם!
בחב"דפדיה יש כעת: 11,237 ערכים. הצטרפו למיזם!
נשיאי חב"ד בית רבי תורת החסידות ניגוני חב"ד ימי חב"ד ספרות חב"ד גאולה ומשיח אישי חב"ד תורת הנגלה הפצת המעיינות
תמונה נבחרת
|
הידעת?היום יום |
ימי חב"ד
- בא' בחשוון ב'תתקל"ה - הסתיימה בנייתו של בית המקדש הראשון.
- בא' בחשוון תר"פ - רבי יוסף ענגיל, ראב"ד קראקא (קרקוב), מחבר 'אוצרות יוסף', נפטר.
- בא' בחשוון תקצ"ט - הרב נתן גוראריה, רב וראש ישיבה בעיר ויעטקא, ומגדולי תלמידיו המובהקים של אדמו"ר הזקן נפטר.
- בא' בחשוון תרמ"ב - הרבנית מרת נחמה דינה שניאורסון, רעייתו של אדמו"ר הריי"צ - נולדה.
- בא' בחשוון תשע"ב - הרב משה אבלסקי, מחסידי חב"ד בקראון הייטס ומפעילי לשכת עזרת אחים ליהודי חבר העמים נפטר.
Paris
Paris is the capital of France.
Tokyo
Tokyo is the capital of Japan.
<html> <style> /* Style the tab */ div.tab {
overflow: hidden; border: 1px solid #ccc; background-color: #f1f1f1;
}
/* Style the buttons inside the tab */ div.tab button {
background-color: inherit; float: right; border: none; outline: none; cursor: pointer; padding: 14px 16px; transition: 0.3s;
}
/* Change background color of buttons on hover */ div.tab button:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */ div.tab button.active {
background-color: #ccc;
}
/* Style the tab content */ .tabcontent {
display: none; padding: 6px 12px; border: 1px solid #ccc; border-top: none;
} </style> <script> function openCity(evt, cityName) {
// Declare all variables var i, tabcontent, tablinks;
// Get all elements with class="tabcontent" and hide them tabcontent = document.getElementsByClassName("tabcontent"); for (i = 0; i < tabcontent.length; i++) { tabcontent[i].style.display = "none"; }
// Get all elements with class="tablinks" and remove the class "active" tablinks = document.getElementsByClassName("tablinks"); for (i = 0; i < tablinks.length; i++) { tablinks[i].className = tablinks[i].className.replace(" active", ""); }
// Show the current tab, and add an "active" class to the button that opened the tab document.getElementById(cityName).style.display = "block"; evt.currentTarget.className += " active";
} </script> </html>