-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshow.html
81 lines (79 loc) · 3.94 KB
/
show.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Show contact</title>
<link rel="stylesheet" href="css/bootstrap4.5.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/jquery3.6.0.min.js"></script>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.27.0/feather.min.js" integrity="sha256-xHkYry2yRjy99N8axsS5UL/xLHghksrFOGKm9HvFZIs=" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<!-- Navbar -->
<div class="row">
<div class="col-md-12">
<div class="top-breadcrumb">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="mr-4"><a href="index.html" class=" text-dark"><i class="feather" data-feather="arrow-left"></i></a></li>
<li class="mr-4"><a href="index.html" class=" text-dark">Contacts</a></li>
<li class="mr-4"><a href="create.html" class=" text-dark"><i class="feather" data-feather="plus"></i></a></li>
</ol>
</nav>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="card m-b-30">
<div class="card-body py-5">
<div class="row">
<div class="col-lg-3 text-center">
<img src="https://randomuser.me/api/portraits/men/45.jpg" class="img-fluid w-100 mb-3" alt="user" />
</div>
<div class="col-lg-9">
<h4>John Doe</h4>
<p>09171231234</p>
<div class="button-list mt-4 mb-3">
<button type="button" class="btn btn-primary-rgba"><i class="feather mr-1" data-feather="message-square"></i>Message</button>
<button type="button" class="btn btn-success-rgba"><i class="feather mr-1" data-feather="phone"></i>Call Now</button>
</div>
<div class="table-responsive">
<table class="table table-borderless mb-0">
<tbody>
<tr>
<th scope="row" class="p-1">Email :</th>
<td class="p-1">example@email.com</td>
</tr>
<tr>
<th scope="row" class="p-1">Gender :</th>
<td class="p-1">Male</td>
</tr>
<tr>
<th scope="row" class="p-1">Country :</th>
<td class="p-1">Iran</td>
</tr>
<tr>
<th scope="row" class="p-1">City :</th>
<td class="p-1">Shiraz</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
feather.replace()
</script>
</body>
</html>