-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservices.html
71 lines (54 loc) · 2.37 KB
/
services.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Manana's Cakes</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="photos/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<ul>
<li><a href="index.html">About Us</a> </li>
<li><a href="cakes.html">Our Cakes</a> </li>
<li><a href="services.html">Our Services</a> </li>
</ul>
</nav>
<h1 class="service-h1" >We can deliver our cakes throught Tbilisi</h1>
<form class="form">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"> <br>
<label for="email">Enter your email:</label> <br>
<input type="email" id="email" name="email"> <br>
<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label> <br>
<input type="checkbox" id="delivery" name="I want home delivery" value="delivery">
<label for="delivery"> I want home delivery</label><br>
<label for="Your order">Your order</label> <br>
<textarea id="your order" rows="4" cols="50">
</textarea> <br>
<input type="submit" value="Submit">
</form>
<div class="footer">
<div class="part-footer">
<h1>Manana's Cakes - <span>Address: 5 Nutsubidze Str. Tbilisi, Georgia</span></h1>
</div>
<h3> © 2020 Irakli Tsobekhia</h3>
</div>
</body>
</html>