-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
63 lines (55 loc) · 2.06 KB
/
Copy pathcontact.html
File metadata and controls
63 lines (55 loc) · 2.06 KB
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
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>צור קשר</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header>
<a href="homePage.html"><img class="head-a-image" src="images2/ITALIAN TASTE.png" alt=""></a>
</header>
<nav>
<a href="homePage.html">בית</a>
<a href="orders.html">תפריט</a>
<a href="about.html">אודות</a>
<a href="contact.html">צור קשר</a>
<div class="dropdown_time">
<a id="time" href="#time">שעות פתיחה </a>
<div class="list">
<p>יום א' 8:00-22:00</p>
<p>יום ב' 8:00-22:00</p>
<p>יום ג' 8:00-22:00</p>
<p>יום ד' 8:00-22:00</p>
<p>יום ה' 8:00-22:00</p>
<p>יום ו' 8:00-14:00</p>
<p>מוצ"ש 18:00-23:30</p>
</div>
</div>
</nav>
<div class="contact-container">
<form action="" method="post">
<h1>נשמח לשמוע מכם:)</h1>
<label for="name">שם:</label>
<input type="text" id="name" name="name" required>
<label for="email">אימייל:</label>
<input type="email" id="email" name="email" required>
<label for="phone">טלפון:</label>
<input type="tel" id="phone" name="phone">
<label for="message">הודעה:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">שלח</button>
</form>
</div>
<footer>
<div class="end">
<a href="homePage.html">בית</a>
<a href="orders.html">תפריט</a>
<a href="about.html">אודות</a>
<a href="#time">שעות פתיחה</a>
<a href="contact.html">צור קשר</a>
</div>
</footer>
</body>
</html>