Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 488 | Author: cody
  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
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Finance Bank Accounts</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
        <div class="container">
            <div class="action-buttons">
                <a href="#" class="action-button action-button--primary">
                    <svg width="16" height="16" fill="currentColor" focusable="false" viewBox="0 0 24 24"><path d="M21.343 10.543 12.77 1.972a.829.829 0 0 0-1.2 0L3 10.543l1.2 1.2 7.114-7.114v17.657h1.715V4.63l7.114 7.114 1.2-1.2Z"></path></svg>
                    Send
                </a>
                <a aria-expanded="false" href="#" class="action-button">
                    <svg width="16" height="16" fill="currentColor" focusable="false" viewBox="0 0 24 24"><path d="M22.286 11.143h-9.429V1.715h-1.714v9.428H1.714v1.715h9.429v9.428h1.714v-9.428h9.429v-1.715Z"></path></svg>
                    Add Money
                </a>
                <a aria-expanded="false" href="#" class="action-button">
                    <svg width="16" height="16" fill="currentColor" focusable="false" viewBox="0 0 24 24"><path d="m20.143 12.256-7.114 7.114V1.713h-1.715V19.37L4.2 12.256l-1.2 1.2 8.571 8.571a.847.847 0 0 0 .6.257.846.846 0 0 0 .6-.257l8.572-8.571-1.2-1.2Z"></path></svg>
                    Request
                </a>
                <button type="button" disabled id="action-button--previous" class="action-button--horizontal-scroll">
                    <svg width="16" height="16" fill="currentColor" focusable="false" viewBox="0 0 24 24"><path d="M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"></path></svg>
                </button>
                <button type="button" id="action-button--next" class="action-button--horizontal-scroll">
                    <svg width="16" height="16" fill="currentColor" focusable="false" viewBox="0 0 24 24"><path d="M12.771 7.115a.829.829 0 0 0-1.2 0L3 15.686l1.2 1.2 7.971-7.971 7.972 7.971 1.2-1.2-8.572-8.571Z"></path></svg>
                </button>
            </div>
            <div id="bank-accounts">
                <a href="#uk" class="bank-account">   
                    <img
                        class="flag"
                        aria-hidden="true"
                        src="assets/uk.png" 
                        alt="UK"
                    >
                    <div>
                        <h2 role="presentation">
                           12150.25
                        </h2>
                        <div class="currency">
                            British Pound
                        </div>
                    </div>          
                </a>
                <a href="#usa" class="bank-account">                    
                    <img
                        class="flag"
                        aria-hidden="true"
                        src="assets/usa.png" 
                        style="object-position: -11px center;"
                        alt="US"
                    >
                    <div>
                        <h2 role="presentation">
                            15150.25

                        </h2>
                        <div class="currency">
                            US Dollar
                        </div>
                    </div>  
                </a>
                <a href="#eu" class="bank-account">                    
                    <img
                        class="flag"
                        aria-hidden="true"
                        src="assets/eu.png" 
                        alt="EU"
                    >
                    <div>
                        <h2 role="presentation">
                            7250.15
                        </h2>
                        <div class="currency">
                            Euro
                        </div>  
                    </div>
                </a>
                <a href="#cz" class="bank-account">           
                    <img
                        class="flag"
                        aria-hidden="true"
                        src="assets/cz.png" 
                        alt="Czech Republic"
                    >
                    <div>
                        <h2 role="presentation">
                            150055.25
                        </h2>
                        <div class="currency">
                            Czech Koruna
                        </div>
                    </div>         
                </a>
                <a href="#chf" class="bank-account">           
                    <img
                        class="flag"
                        aria-hidden="true"
                        src="assets/chf.png" 
                        alt="Czech Republic"
                    >
                    <div>
                        <h2 role="presentation">
                            2456.88
                        </h2>
                        <div class="currency">
                            Swiss Franc
                        </div>
                    </div>         
                </a>
            </div>
        </div>
        <script src="script.js"></script>
    </body>
</html>