-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview.html
119 lines (102 loc) · 3.93 KB
/
review.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>Restaurant page</title>
<link rel='stylesheet' href='https://use.fontawesome.com/releases/v5.7.0/css/all.css' integrity='sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ' crossorigin='anonymous'>
<link rel="stylesheet" type="text/css" href="bootstrap.min.css" >
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="welcome.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="rest.html">Resturant</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link" href="signup.html">Signup</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">ContectUs</a>
</li>
</ul>
</nav>
<header id="page-header" style=" background-image: url(rest/image6.jpg); background-size: cover; background-position: 0 -360px; height: 400px; background-attachment: fixed; color: #fff; border-bottom: 1px #eee solid ;
top: 0;">
<div class="col">
</div>
</header>
<section id="contact" class="py-3" style="margin-top: 50px;">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="card p-4">
<div class="card-body">
<h4 class="text-center">Your overall rating of this restaurant</h4>
<h4>Services</h4>
<h4>Food</h4>
<h4>Value</h4>
</div>
</div>
</div>
<div class="col-md-8">
<div class="card p-4">
<div class="card-body">
<h3 class="text-center">Please fill out this form if you have someting to say Dok</h3>
<hr>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="First Name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Last Name">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Email">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Phone Number">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="form-group">
<textarea class="form-control" placeholder="Message"></textarea>
</div>
</div>
<div class="col-md-12">
<input type="submit" class="btn btn-outline-danger btn-block">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer id="#page-footer" style="background: #000;color: #fff; text-align: center !important; padding: 1.5rem !important; margin-top: 10px;">
<i class='fab fa-facebook-f' style='font-size:24px ' ></i><br style="margin-bottom: 5px;">
<i class='fas fa-paper-plane' style='font-size:24px'></i>
<p style="margin-top: 5px;">Copright 2017 © Food review</p>
</footer>
</body>
</html>