-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (81 loc) · 2.85 KB
/
index.html
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-HK5fgLBL+xu6dm/Ii3z4xhlSUyZgTT9tuc/hSrtw6uzJOvgRr2a9jyxxT1ely+B+xFAmJKVSTbpM/CuL7qxO8w=="
crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/x-icon" href="logo.ico" />
<title> 5 עובדות </title>
</head>
<body>
<h1>5 עובדות על החיים שכנראה לא ידעתם:)</h1>
<div class="faq-container">
<div class="faq">
<h3 class="faq-title">
כמה שאלות ביום שואל בממוצע ילד בן 4?
</h3>
<p class="faq-text">
400!
</p>
<button>
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq">
<h3 class="faq-title">
לאיזה גודל של חור יכול עכבר להשתחל?
</h3>
<p class="faq-text">
לחור בגודל של עט כדורי!
</p>
<button>
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq ">
<h3 class="faq-title">
כמה שיניים יש ליתוש?
</h3>
<p class="faq-text">
47
</p>
<button>
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq ">
<h3 class="faq-title">
לאיזה דבר דומה 50% מהמטען הגנטי של האדם?
</h3>
<p class="faq-text">
בננה
</p>
<button>
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
<div class="faq ">
<h3 class="faq-title">
מי המציא במקור את השערות סבתא?
</h3>
<p class="faq-text">
רופא שיניים
</p>
<button>
<i class="fas fa-chevron-down"></i>
<i class="fas fa-times"></i>
</button>
</div>
</div>
<p class="white">All the icons are from FontAwesome</p>
<script src="script.js"></script>
</body>
</html>