-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.html
23 lines (22 loc) · 848 Bytes
/
feed.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styleF.css">
<title>TRIP-STAR | Feedback</title>
</head>
<body>
<div class="logo"><img src="img/traveling-logo.png" class="logo"></div>
<div class="container">
<form method="post" action="send-email.php">
<h3>Please Give Us Your Review</h3>
<input type="text" name="name" placeholder="User-Name" required>
<input type="email" name="email" placeholder="Email-id" required>
<textarea name="message" rows="4" placeholder="What's in Your Mind?" required></textarea>
<button type="submit">Send</button>
</form>
</div>
<a href="index.html" class="back-btn">Back</a>
</body>
</html>