-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (49 loc) · 2.12 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
<!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">
<title>Fresh Fruit Shop</title>
</head>
<body>
<div class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about-us">About Us</a></li>
<li><a href="#shop">Shop</a></li>
<li><a href="#cart">Cart</a></li>
<li><a href="#my-account">My Account</a></li>
<li><a href="#book-reviews">Book Reviews</a></li>
<li><a href="#contact-us">Contact Us</a></li>
</ul>
</div>
<div class="hero">
<h1>Welcome to our Fresh Fruit Shop!</h1>
<img src="fruits.jpg" alt="Fruits">
<p>Welcome to our vibrant and fresh fruit kingdom! To sate your appetites and fuel your body, we handpicked the best and tastiest fruits from around the world.</p>
</div>
<div class="container">
<h3>Feedback Form</h3>
<form id="feedbackForm">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="First Name" required>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Last Name" required>
<label for="country">Country</label>
<select id="country" name="country" required>
<option value="">Select Country</option>
<option value="Pakistan">Pakistan</option>
<option value="India">India</option>
<option value="Bangladesh">Bangladesh</option>
</select>
<label for="subject">Say Something</label>
<textarea id="subject" name="subject" placeholder="Say something..." style="height:200px" required></textarea>
<input type="submit" value="Submit">
</form>
</div>
<!-- Include JavaScript File -->
<script src="script.js"></script>
</body>
</html>