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
|
<div class="navbar-expand-lg subMenuNavWrap"> <div class="subMenuWrap align-items-center"> <div class="h3 blackDeepWord unbold m-0 minWidth"> Billing </div> <div class="d-flex ml-auto align-items-center subMenu">
<div class="mobileShow"> <div class="subMenuDrop d-inline-block v-m"> <a class="blackDeepWord dropdownSub-toggle subMenuDropBtn" href="JavaScript:Void(0);"> <i class="fas fa-chevron-down"></i> </a> <div class="dropdownSub slideIn animate"> <a href="bi_summary.php" class="word">Credit Summary</a> <a href="bi_history.php" class="word">Credit History</a> <a href="bi_invoices.php" class="word">Invoices</a> <a href="pp_howtopay.php" target="_blank" class="word">How to Pay</a> </div> </div> </div> <div class="deskTopShow"> <a href="bi_summary.php" class="word">Credit Summary</a> <a href="bi_history.php" class="word">Credit History</a> <a href="bi_invoices.php" class="word">Invoices</a> <a href="howtopay.php" target="_blank" class="word">How to Pay</a> </div>
</div> </div> </div>
|