-
Notifications
You must be signed in to change notification settings - Fork 2
/
contactUs.html
68 lines (49 loc) · 1.93 KB
/
contactUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body>
<div class="menu">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="about.html">About Us</a>
<a href="contactus.html"> Contact Us</a>
<hr>
</div>
<h1 class="contact-us-header"> :צור קשר</h1>
<form class="contact-us-form">
<label for="first-name"> שם פרטי: </label>
<input type="text" placeholder="שם פרטי">
<label for="last-name"> שם משפחה: </label>
<input type="text" placeholder="שם משפחה">
<label for="email"> אימייל: </label>
<input type="text" placeholder="כתובת מייל">
<label for="PhoneNumber"> מספר טלפון: </label>
<input type="tel" placeholder="מספר טלפון">
<label for="address"> כתובת מגורים: </label>
<div class="form-address">
<div>
<label for="country"> מדינה: </label>
<input type="text" placeholder="מדינה">
<label for="city"> עיר: </label>
<input type="text" placeholder="עיר">
</div>
<div>
<label for="street"> רחוב: </label>
<input type="text" placeholder="רחוב">
<label for="street number"> מספר בית: </label>
<input type="number" placeholder="מספר בית">
</div>
</div>
<label for="message"> הודעה: </label>
<textarea id="message" placeholder="כתוב את ההודעה"> </textarea>
<button type="submit">שלח</button>
</form>
<p>All rights reserved ©</p>
<label></label>
</body>
</html>