-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgeneral-after.html
84 lines (83 loc) · 2.62 KB
/
general-after.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Mechanic on the way</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css'><link rel="stylesheet" href="general-style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<a href="index.html"><img alt="Mech"src="logo-pro.png" width="100px" height="100px" style="float:right; margin-right:10em;"></a>
<div class="background"></div>
<div class="profile-card">
<div class="cover"></div>
<div class="profile">
<div class="pic"></div>
<div class="above-fold">
<div class="name">
Mr. Blank
</div>
<div class="role">
Mechanic
</div>
<div class="location">
<i class="fas fa-map-marker-alt"></i>Greater Noida, India
</div>
<div class="row">
<a href="general-after2.html">
<div class="button">
Reject
</div></a>
<a href="trans1.html"><div class="button">
Accept
</div></a>
</div>
<div id="expand-button">
<i class="fas fa-arrow-down"></i>
</div>
</div>
<div class="below-fold">
<div class="about">
<h3>
About
</h3>
<p>
Hi, I am Mr Blank. I have an experience of 2-3 years in Hyundai as a senior mechanic. I had 4.7 star rating for about 4 months. I am specialised in Complete Car Service.
</p>
</div>
<div class="row stats">
<div class="stat">
<label>Experience</label>
<div class="num">
2-6 years
</div>
</div>
<div class="stat">
<label>Rating in last month</label>
<div class="num">
4.7
</div>
</div>
<div class="stat">
<label>Services delivered</label>
<div class="num">
104
</div>
</div>
</div>
</div>
</div>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script>
<script>
$('#expand-button').click(function() {
$('.profile-card').toggleClass('expand');
})
</script>
<div style="margin: 50px 0; display: flex; align-items: center; justify-content: center; width: 100%; font-size:36px;">
<a style="display: block; text-align: center; color: #555; text-decoration: none; margin-right: 15px; " href="index.html" ><i class="fas fa-home" style="color: #1da1f2; margin-right: 5px;"></i>Get back to our home page</a>
</div>
</body>
</html>