-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformsection.html
41 lines (41 loc) · 1.54 KB
/
formsection.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<section>
<h2>הרשמה</h2>
<h3>הכניסה היא חינם אבל מספר המקומות מצומצם.</h3>
<p>נשמח אם תרשמו רק אם אתם באמת מתכוונים להגיע - כדי שלא נסרב למשיהו אחר.</p>
<hr/>
<p>כל הפרטים האישיים ישארו חסויים ואנחנו לא נעביר אותם לאף אחד.</p>
<hr/>
<form action="" method="post">
<div>
<label for="full-name">שם מלא</label>
<input type="name" id="full-name" placeholder="פרטי וגם משפחה" />
</div>
<div>
<label for="job-title">תפקיד</label>
<input type="text" id="job-title" placeholder="מה אתם עושים ביום יום" />
</div>
<div>
<label for="org">ארגון</label>
<input type="text" id="org" placeholder="מי משלם לכם משכורת" />
</div>
<div>
<label for="phone">מספר טלפון</label>
<input type="tel" id="phone" placeholder="או סלולרי, לנו לא איכפת" />
</div>
<div>
<label for="rsvp">יש חברים?</label>
<input type="text" id="rsvp" placeholder="יש מלא אבל אני בא לבד" />
</div>
<input type="submit" value="זהו! שלח אותי" />
</form>
<img src="projector.svg" alt="">
</section>
</body>
</html>