-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (122 loc) · 5.9 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="chef-hat.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2&family=Poppins:wght@200;300;400&family=Roboto+Slab&display=swap"
rel="stylesheet">
<link rel="stylesheet" media="only screen and (max-width: 1170px)" href="phone.css">
<title>Crazy Cat Chef</title>
</head>
<body>
<!-- navbar -->
<nav id="navbar">
<div id="logo">
<img src="webLogo.jpg" alt="error!">
</div>
<ul>
<li class="item"><a href="#home">Home</a></li>
<li class="item"><a href="#ser">Service</a></li>
<li class="item"><a href="#client-section">Client</a></li>
<li class="item"><a href="#contact">Contact</a></li>
</ul>
</nav>
<!--home section -->
<section id="home">
<h1 class="h-primary">CRAZY CAT CHEF!</h1>
<p>“ Am I tough? Am I strong? Am I hard-core? Absolutely.
Did I whimper with pathetic delight when I sank my teeth into my hot fried-chicken sandwich? You betcha. ”
― James Patterson
</p>
<button class="btn">Order now</button>
</section>
<!-- services section -->
<section id="ser" class="services-container">
<h1 class="h-primary center">Our services</h1>
<div id="services">
<div class="box">
<img id="Pizza" src="2.png" alt="error!">
<h2 class="h-secondary center">Food Ordering</h2>
<p class="center">Online food ordering is the process of ordering food, for delivery or pickup, from a
website or other application. The product can be either ready-to-eat food (Example - direct from a
home-kitchen, restaurant, or a ghost kitchen). In restaurant-controlled online food ordering, the
restaurants create their own website and app.</p>
</div>
<div class="box">
<img id="Catimg" src="3.jpg" alt="error!">
<h2 class="h-secondary center">Food Catering</h2>
<p class="center">Catering is the business of providing food service at a remote site or a site such as
a hotel, hospital, pub, aircraft, cruise ship, park, filming site or studio, entertainment site, or
event venue. A wedding caterer provides food for a wedding party. The wedding caterer can be hired
independently or can be part of a package designed by the venue.
</p>
</div>
<div class="box">
<img id="Burg" src="1.jpg" alt="error!">
<h2 class="h-secondary center">Bulk Ordering</h2>
<p class="center">Bulk purchasing (or "mass buying") is the purchase of much larger quantities than the
usual, for a unit price that is lower than the usual.
Wholesaling is selling goods in large quantities at a low unit price to retail merchants.The
wholesaler will accept a slightly lower sales price for each unit,</p>
</div>
</div>
</section>
<!-- client section -->
<section id="client-section">
<h1 class="h-secondary center">Our Clients</h1>
<div id="clients">
<div class="client-item">
<a href="#jbjbj" target="_blank"><img id="c1" src="logo_3.jpg" alt="Our client"></a>
</div>
<div class="client-item">
<a href="https://www.ubereats.com/" target="_blank"><img id="c2" src="logo_1.png" alt="Our client"></a>
</div>
<div class="client-item">
<a href="https://eu.wholefoodsmarket.com/?destination=www.wholefoodsmarket.com%2F" target="_blank"><img
id="kfc" src="logo_4.jpg" alt="Our client"></a>
</div>
<div class="client-item">
<a href="https://www.zomato.com/india" target="_blank"><img id="c4" src="logo_2.png"
alt="Our client"></a>
</div>
</div>
</section>
<!-- contact form -->
<section id="contact">
<h1 class="h-primary center">Contact Us</h1>
<div id="contact-box">
<form action="">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" name="myName" id="name" placeholder="enter your name...">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" name="myEmail" id="email" placeholder="enter your email...">
</div>
<div class="form-group">
<label for="Phone">Phone number:</label>
<input type="text" name="myphone" id="phone" placeholder="enter your Phone number...">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea name="myMessage" id="message" cols="30" rows="5"
placeholder="enter your message for us..."></textarea>
</div>
<button class="btn conbtn">Submit</button>
</form>
</div>
</h1>
</section>
<!-- footer -->
<footer>
Copyright © Crazy Cat Chef, All rights Reserved.
</footer>
</body>
</html>