-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewOfferList.html
87 lines (48 loc) · 2 KB
/
viewOfferList.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
<html>
<head>
<title>my requests list</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="../web-project/style.css">
</head >
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<b> <img src="../web-project/cloud.png" width="50" height="50">babyhood<b>
<div class="w3-right w3-hide-small">
<a href="../web-project/ParentHomePage.html" class="w3-bar-item w3-button">Home</a>
<a href="../web-project/veiwMyRequests.html" class="w3-bar-item w3-button">my requests</a>
<a href="../web-project/viewOfferList.html" class="w3-bar-item w3-button">my bookings</a>
<a href="../web-project/Pprofile.html" class="w3-bar-item w3-button"><img src="../web-project/user.png" width="50" height="50"></a>
</div>
</div>
</div>
<br><br><br><br>
<body class="background">
<h1> offer list</h1>
<br>
<form method="post" action="#">
<div class="babysitter-profile">
<h1>80SR </h1>
<h3>per hour</h3>
2 days a week (Friday and Saturday)
<br><br><br><br>
<a href="../web-project/veiwDetailsOffer1.html"><input type="button" value=" details" class="Send-request-button"></a>
</div>
<div class="babysitter-profile">
<h1> 90SR </h1>
<h3>per hour</h3>
5 days a week (Sunday to Thursday)
<br><br><br><br>
<a href="../web-project/veiwDetailsOffer2.html"><input type="button" value=" details" class="Send-request-button"></a>
</div>
<div class="babysitter-profile">
<h1> 70SR </h1>
<h3>per hour</h3>
3 days a week
(Monday to Wednesday)
<br><br><br><br>
<a href="../web-project/veiwDetailsOffer2.html"><input type="button" value=" details" class="Send-request-button"></a>
</div>
</form>
</body>
</html>