-
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.
- Loading branch information
1 parent
7a3c502
commit 80db486
Showing
6 changed files
with
126 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.
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,65 @@ | ||
<!-- Website for Chatbot Demonstration | ||
Author - Rahul Raj Pandey | ||
--> | ||
|
||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet" type="text/css" href="styles.css"> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="w3-bar w3-light-grey w3-border"> | ||
<header > | ||
<nav> | ||
<a href="#home">HOME</a> | | ||
<a href="#menu">MENU</a> | | ||
<a href="#location">LOCATION</a> | | ||
<a href="#aboutus">ABOUT US</a> | | ||
<a href="#contactus">CONTACT US</a> | ||
</nav> | ||
</header> | ||
|
||
<section id="home"> | ||
<img src="banner.jpg" > | ||
<!-- Add images here --> | ||
</section> | ||
|
||
<section id="menu"> | ||
<h2>Our Menu</h2> | ||
<div class="grid-container"> | ||
<img src="menu1.jpg" alt="Menu item 1"> | ||
<img src="menu2.jpg" alt="Menu item 2"> | ||
<img src="menu3.jpg" alt="Menu item 3"> | ||
</div> | ||
</section> | ||
|
||
<section id="location"> | ||
<h2>Location</h2> | ||
<p>Shyam Nagar, Kanpur</p> | ||
<!-- Add map widget here --> | ||
</section> | ||
|
||
<section id="contactus"> | ||
<h2>Contact Us</h2> | ||
<p>Got questions? Want to place an order? Call us at +91 8008008888 or email us at info@rahulfastfood.com</p> | ||
</section> | ||
|
||
|
||
<p><b>Developed with ❤️ by <i>Rahul Raj Pandey</i><b> | ||
<a href="https://www.linkedin.com/in/rahulraj31/"> | ||
<img align="center" src="https://img.icons8.com/color/48/000000/linkedin.png" height="30" width="30"> | ||
</a> | ||
|
||
</p> | ||
<script src="https://www.gstatic.com/dialogflow-console/fast/messenger/bootstrap.js?v=1"></script> | ||
<df-messenger | ||
intent="WELCOME" | ||
chat-title="Saarthi 👨🍳" | ||
agent-id="d3117670-c0fc-4847-8550-771e82e7c19a" | ||
chat-icon="https://cdn.iconscout.com/icon/premium/png-512-thumb/robot-chef-2708871-2249387.png?f=webp&w=256" | ||
language-code="en" | ||
></df-messenger> | ||
</div> | ||
</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,61 @@ | ||
/* Author Rahul Raj Pandey */ | ||
|
||
body { | ||
font-family: 'Roboto', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
|
||
header { | ||
background-color: rgb(66, 113, 252); | ||
text-align: center; | ||
padding: 20px; | ||
color: white; | ||
font-size: x-large; | ||
} | ||
|
||
h1 { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
nav a { | ||
margin: 0 10px; | ||
text-decoration: none; | ||
color: #fff; | ||
transition: color 0.3s ease-in-out; | ||
} | ||
|
||
nav a:hover { | ||
color: yellowgreen; | ||
} | ||
|
||
section { | ||
margin: 20px; | ||
background-color:white; | ||
border-radius: 8px; | ||
padding: 20px; | ||
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); | ||
object-fit: cover; | ||
} | ||
|
||
section h2 { | ||
color: rgb(66, 113, 252); | ||
font-size: xx-large; | ||
} | ||
|
||
|
||
body { | ||
font-family: 'Roboto', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
text-align: center; | ||
} | ||
|
||
.home{ | ||
width: 60cm; | ||
|
||
} | ||
|