-
Notifications
You must be signed in to change notification settings - Fork 3
/
profiles-2.html
83 lines (79 loc) · 3.64 KB
/
profiles-2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-profiles.min.css" />
</head>
<body>
<!-- Start your project here-->
<section class="vh-100" style="background-color: #eee;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-md-9 col-lg-7 col-xl-5">
<div class="card" style="border-radius: 15px; background-color: #93e2bb;">
<div class="card-body p-4 text-black">
<div>
<h6 class="mb-4">Exquisite hand henna tattoo</h6>
<div class="d-flex align-items-center justify-content-between mb-3">
<p class="small mb-0"><i class="far fa-clock me-2"></i>3 hrs</p>
<p class="fw-bold mb-0">$90</p>
</div>
</div>
<div class="d-flex align-items-center mb-4">
<div class="flex-shrink-0">
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-profiles/avatar-2.webp" alt="Generic placeholder image" class="img-fluid rounded-circle border border-dark border-3" style="width: 70px;">
</div>
<div class="flex-grow-1 ms-3">
<div class="d-flex flex-row align-items-center mb-2">
<p class="mb-0 me-2">@sheisme</p>
<ul class="mb-0 list-unstyled d-flex flex-row" style="color: #1B7B2C;">
<li>
<i class="fas fa-star fa-xs"></i>
</li>
<li>
<i class="fas fa-star fa-xs"></i>
</li>
<li>
<i class="fas fa-star fa-xs"></i>
</li>
<li>
<i class="fas fa-star fa-xs"></i>
</li>
<li>
<i class="fas fa-star fa-xs"></i>
</li>
</ul>
</div>
<div>
<button type="button" class="btn btn-outline-dark btn-rounded btn-sm" data-mdb-ripple-color="dark" >+ Follow</button>
<button type="button" class="btn btn-outline-dark btn-rounded btn-sm" data-mdb-ripple-color="dark" >See profile</button>
<button type="button" class="btn btn-outline-dark btn-floating btn-sm" data-mdb-ripple-color="dark" ><i class="fas fa-comment"></i></button>
</div>
</div>
</div>
<hr>
<p class="my-4 pb-1">52 comments</p>
<button type="button" class="btn btn-success btn-rounded btn-block btn-lg"><i class="far fa-clock me-2"></i>Book now</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>