-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (82 loc) · 4.42 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
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="dogicon.ico">
<title>שאלון העדפות כלבים</title>
<link rel="stylesheet" href="style.css">
</head>
<body dir="rtl">
<!-- Question Sections -->
<div class="question-container" id="question1">
<h2>איזה גודל אתה מעדיף?</h2>
<form id="form1">
<label><input type="radio" name="size" value="mini"> מיני (פחות מ-10 ק"ג)</label>
<label><input type="radio" name="size" value="medium"> בינוני (10-20 ק"ג)</label>
<label><input type="radio" name="size" value="large"> גדול (20-40 ק"ג)</label>
<label><input type="radio" name="size" value="huge"> ענק (מעל 40 ק"ג)</label>
<button type="button" id="next1" disabled>הבא</button>
</form>
</div>
<div class="question-container" id="question2" style="display: none;">
<h2>אתה גר ב...</h2>
<form id="form2">
<label><input type="radio" name="living" value="small-apartment"> דירה קטנה</label>
<label><input type="radio" name="living" value="large-apartment"> דירה גדולה</label>
<label><input type="radio" name="living" value="home-with-yard"> בית עם חצר</label>
<button type="button" id="next2" disabled>הבא</button>
</form>
</div>
<div class="question-container" id="question3" style="display: none;">
<h2>האם יהיו:</h2>
<form id="form3">
<label><input type="checkbox" name="kids"> ילדים</label>
<label><input type="checkbox" name="cats"> חתולים</label>
<label><input type="checkbox" name="dogs"> כלבים נוספים</label>
<button type="button" id="next3" disabled>הבא</button>
</form>
</div>
<div class="question-container" id="question4" style="display: none;">
<h2>כמה פעילות תהיה באורח החיים שלך?</h2>
<form id="form4">
<label><input type="radio" name="activity" value="very-active"> מאוד פעיל (שעות של פעילות יומית)</label>
<label><input type="radio" name="activity" value="moderately-active"> פעיל במידה (מספר פעמים בשבוע)</label>
<label><input type="radio" name="activity" value="couch-potato"> בטטת כורסה</label>
<button type="button" id="next4" disabled>הבא</button>
</form>
</div>
<!-- Dog Cards Section -->
<div class="card-container" id="cardContainer" style="display: none;">
<div class="card" style="background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTwyXeKDN29AmZgZPLS7n0Bepe8QmVappBwZCeA3XWEbWNdiDFB')">
<div class="card-info">
<h3>מקס</h3>
<p>גיל: 3</p>
<p>מקס הוא כלב אנרגטי שאוהב הרפתקאות בחוץ.</p>
</div>
</div>
<div class="card" style="background-image: url('https://hips.hearstapps.com/hmg-prod/images/dog-puppy-on-garden-royalty-free-image-1586966191.jpg?crop=0.752xw:1.00xh;0.175xw,0&resize=1200:*')">
<div class="card-info">
<h3>בלה</h3>
<p>גיל: 2</p>
<p>בלה היא כלבה רגועה שאוהבת להירגע בבית.</p>
</div>
</div>
<div class="card" style="background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTwyXeKDN29AmZgZPLS7n0Bepe8QmVappBwZCeA3XWEbWNdiDFB')">
<div class="card-info">
<h3>צ'רלי</h3>
<p>גיל: 5</p>
<p>צ'רלי הוא כלב נאמן שאוהב להיות בסביבת אנשים.</p>
</div>
</div>
<div class="card" style="background-image: url('https://hips.hearstapps.com/hmg-prod/images/dog-puppy-on-garden-royalty-free-image-1586966191.jpg?crop=0.752xw:1.00xh;0.175xw,0&resize=1200:*')">
<div class="card-info">
<h3>לונה</h3>
<p>גיל: 4</p>
<p>לונה היא כלבה פעילה שאוהבת לצאת לטיולים ארוכים.</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>