forked from pranjay-poddar/Dev-Geeks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request pranjay-poddar#83 from rsachdeva1020/main
food website
- Loading branch information
Showing
13 changed files
with
434 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Food delivery</title> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<!-- google fonts --> | ||
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600&display=swap" rel="stylesheet"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link href="https://fonts.googleapis.com/css2?family=PT+Serif:ital@1&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" media="screen and (max-width:1100px)" href="phone.css"> | ||
</head> | ||
|
||
<body> | ||
<nav id="navbar"> | ||
<div id="logo"> | ||
<img src="image/logo.jpg" alt="my reataurant" title="order food"> | ||
</div> | ||
<ul> | ||
<li class="item"><a href="#home">Home</a></li> | ||
<li class="item"><a href="#section">Services</a></li> | ||
<li class="item"><a href="#client_section">Our Clients</a></li> | ||
<li class="item"><a href="#contact">Contact us</a></li> | ||
</ul> | ||
</nav> | ||
<section id="home"> | ||
<h1 class="h_primary"> | ||
Welcome | ||
</h1> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus dicta autem ullam doloribus magnam!</p> | ||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi nesciunt ab dolore deserunt! Quia.</p> | ||
<button class="btn">Order now</button> | ||
</section> | ||
|
||
<section class="services_container" id="section"> | ||
<h1 class="center h_primary"> | ||
Our Services | ||
</h1> | ||
<div id="services"> | ||
<div class="box"> | ||
<img src="image/pizza-3007395_1920.jpg" alt=""> | ||
<h2 class="h_secondary center">Food Ordering</h2> | ||
<p class="center"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Explicabo ea cupiditate incidunt quibusdam aliquam recusandae eum maxime totam voluptatum quae illo et ut possimus saepe harum inventore, sed temporibus alias at. Laboriosam, ipsa optio. | ||
</p> | ||
</div> | ||
<div class="box"> | ||
<img src="image/plate.jpg" alt=""> | ||
<h2 class="h_secondary center">Food Catering</h2> | ||
<p class="center"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Explicabo ea cupiditate incidunt quibusdam aliquam recusandae eum maxime totam voluptatum quae illo et ut possimus saepe harum inventore, sed temporibus alias at. Laboriosam, ipsa optio. | ||
</p> | ||
</div> | ||
<div class="box"> | ||
<img src="image/delivery.jpg" alt=""> | ||
<h2 class="h_secondary center">Food Ordering</h2> | ||
<p class="center"> | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Explicabo ea cupiditate incidunt quibusdam aliquam recusandae eum maxime totam voluptatum quae illo et ut possimus saepe harum inventore, sed temporibus alias at. Laboriosam, ipsa optio. | ||
</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="client_section"> | ||
<h1 class="h_primary center"> | ||
Our Clients | ||
</h1> | ||
<div class="clients"> | ||
<div class="client_item"> | ||
<img src="image/GitHub-Mark.png" alt=""> | ||
</div> | ||
<div class="client_item"> | ||
<img src="image/linkedin.png" alt=""> | ||
</div> | ||
<div class="client_item"> | ||
<img src="image/HackerRank_logo.png" alt=""> | ||
</div> | ||
<div class="client_item"> | ||
<img src="image/GitHub-Mark.png" alt=""> | ||
</div> | ||
<div class="client_item"> | ||
<img src="image/linkedin.png" alt=""> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="contact"> | ||
<h1 class="center h_primary"> | ||
Contact us | ||
</h1> | ||
<div id="contact_box"> | ||
<form action=""> | ||
<div class="form_group"> | ||
<label for="name">Name:</label> | ||
<input type="text" name="name" id="name" placeholder="Name"> | ||
</div> | ||
<div class="form_group"> | ||
<label for="email">Email:</label> | ||
<input type="email" name="name" id="email" placeholder="Email"> | ||
</div> | ||
<div class="form_group"> | ||
<label for="phone">Phone:</label> | ||
<input type="phone" name="name" id="phone" placeholder="Phone"> | ||
</div> | ||
<div class="form_group"> | ||
<label for="message">Message:</label> | ||
<textarea name="message" id="message" cols="30" rows="5"></textarea> | ||
</div> | ||
<div class="submit center"> | ||
<button>Submit</button> | ||
</div> | ||
</form> | ||
</div> | ||
|
||
</section> | ||
|
||
<footer> | ||
<div class="center"> | ||
Copyright © www.orderfood.com All Rights Reserved! | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#navbar{ | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
/* height: auto; */ | ||
|
||
} | ||
#navbar ul li a{ | ||
padding: 0px 15px; | ||
|
||
} | ||
#logo img{ | ||
margin: auto; | ||
} | ||
#home{ | ||
height: 450px; | ||
padding: 0; | ||
} | ||
#home::before{ | ||
height: 454px; | ||
} | ||
#home p{ | ||
font-size: 15px; | ||
} | ||
|
||
#services{ | ||
flex-direction: column; | ||
} | ||
#services .box{ | ||
margin: 10px 0; | ||
} | ||
#services .box img { | ||
/* height: auto; */ | ||
height: 100px; | ||
|
||
/* width: auto; */ | ||
} | ||
|
||
.clients{ | ||
flex-wrap: wrap; | ||
} | ||
#contact_box{ | ||
margin: auto; | ||
} | ||
#contact_box form { | ||
width: 70%; | ||
} | ||
|
Oops, something went wrong.