Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create index.html #65

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css" />
<title>Foodizz</title>
</head>

<body>
<section class="hero__section">
<header>
<nav class="navbar">
<a href="#">Download the App!</a>
<div class="navbar__menu_container">
<a href="#" class="link">Investor Relations</a>
<a href="#" class="link">Add FoodCorner</a>
<a href="#" class="link">Login</a>
<a href="#" class="link">New User?</a>
<a href="#" class="user__icon">
<i class="fa fa-user"></i>
</a>
</div>
</nav>
</header>
<div class="hero__section_container">
<img class="hero__section_logo" src="./images/heroSectionLogo.png" alt="Food Logo" />
<h1 class="hero__section_title">
Get the best dishes served right at your doorsteps.
</h1>
<div class="hero__section_input_container">
<input class="input_container_location" type="text" placeholder="Jantar Mantar, Jaipur"/>
<input class="input_container_search" type="text" placeholder="Search for your favourite food." />
</div>
</div>
</section>
</body>

</html>