-
Notifications
You must be signed in to change notification settings - Fork 0
/
HomePage.html
105 lines (94 loc) · 3.76 KB
/
HomePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="css/loginPage.css">
<link rel="stylesheet" href="css/product.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>Pizza</h1>
</div>
<ul>
<a href="#Home"><li>Home</li></a>
<a href="#Product"><li>Product</li></a>
<a href="#About"><li>About Us</li></a>
<a href=""><li>Contact</li></a>
<div>
<i class="fa-solid fa-cart-shopping"></i>
<h5 id="Cart">( 1 )</h5>
<i class="fa-solid fa-user"></i>
</div>
</ul>
</nav>
</header>
<section class="homePage" id="Home">
<img class="Animathion" src="img/onAni.png" alt="">
<div class="text">
<h3>In Pizza</h3>
<h1>Best Price In <span>Sri Lanka</span></h1>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Provident, aliquid obcaecati. Explicabo delectus, nulla similique obcaecati nemo aspernatur omnis excepturi tenetur ipsum alias provident possimus doloribus asperiores aliquam, deserunt praesentium.</p>
<button>Order Now</button>
</div>
<div>
<img id="ChangeImg" src="img/png.png" alt="">
</div>
</section>
<section class="product" id="Product">
<div Id="setItems">
</div>
</section>
<section class="About" id="About">
<div>
<img class="img1" src="img/black-jamun.png" alt="">
<img class="img2" src="img/our-story.png" alt="">
<img class="img3" src="img/onion.png" alt="">
</div>
<div class="dis">
<h3>Our Story <span>-</span></h3>
<h2>The Pizzon Has Excellent Of <br> Quality Foods</h2>
<p>Immerse yourself in the extraordinary world of culinary delight with our <br> quality food pizza, where each slice is a testament to excellence. Our <br> commitment to using the finest ingredients begins with a meticulously <br> crafted dough, delivering a perfect balance of softness and crunch. A <br> symphony of flavors unfolds as our rich tomato sauce, made from sun- <br> ripened tomatoes, harmonizes with the premium cheese blend, <br> creating a luscious and indulgent base.</p>
<button>Contact</button>
</div>
</section>
<section class="contact">
<div class="img">
<img class="img1" src="img/three-leaf.png" alt="">
<img class="img2" src="img/reservation-pizza.png" alt="">
<img src="img/book-jamun.png" alt="">
</div>
<div class="con">
<h3>Contact <span>-</span></h3>
<h2>Contact Us</h2>
<table>
<tbody>
<tr>
<td><input type="text" placeholder="Enter First Name"></td>
<td><input type="text" placeholder="Enter Last Name"></td>
</tr>
<tr>
<td><input type="number" placeholder="Enter Contact Number"></td>
<td><input type="email" placeholder="Enter Mail Address"></td>
</tr>
<tr>
<td><input type="time" placeholder="Time "></td>
<td><input type="date"></td>
</tr>
</tbody>
</table>
<button>Submit</button>
</div>
</section>
<footer>
<h1>Pizza</h1>
<h2>PIZZA © Privacy Policy</h2>
<h3>Design & Developed by Ashen Madhushanka</h3>
</footer>
<script type="module" src="js/LoginPage.js"></script>
</body>
</html>