-
-
Save MrSnor/aba0400a36f6dcb14a763b1de169ba29 to your computer and use it in GitHub Desktop.
Design for expense app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
| <link | |
| rel="stylesheet" | |
| href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" | |
| integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" | |
| crossorigin="anonymous" | |
| /> | |
| <script | |
| defer | |
| src="https://use.fontawesome.com/releases/v5.7.2/js/all.js" | |
| integrity="sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP" | |
| crossorigin="anonymous" | |
| ></script> | |
| <title>Trying Bootstrap</title> | |
| </head> | |
| <body> | |
| <nav class="navbar navbar-dark bg-dark"> | |
| <span class="navbar-brand mb-0 h1">Xpers</span> | |
| </nav> | |
| <div class="container-fluid bg-light" style="min-height: 100vh"> | |
| <div class="container"> | |
| <div class="jumbotron mt-4"> | |
| <div class="input-group mb-3"> | |
| <input | |
| type="text" | |
| class="form-control" | |
| placeholder="Amount spent" | |
| aria-label="Amount spent" | |
| aria-describedby="spent in rupee" | |
| /> | |
| <div class="input-group-append"> | |
| <span class="input-group-text" id="spent in rupee">₹</span> | |
| </div> | |
| </div> | |
| <div class="input-group mb-3"> | |
| <div class="input-group-prepend"> | |
| <span class="input-group-text" id="spent at">@</span> | |
| </div> | |
| <input | |
| type="text" | |
| class="form-control" | |
| placeholder="spent On" | |
| aria-label="spent On" | |
| aria-describedby="spent at" | |
| /> | |
| <div class="input-group-append"> | |
| <button class="btn btn-outline-primary" type="button" id="button-addon2">Add</button> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <ul class="list-group"> | |
| <li class="list-group-item d-flex justify-content-between"> | |
| <div class="d-flex flex-column"> | |
| Tshirt | |
| <small class="text-muted">March 11, 2019</small> | |
| </div> | |
| <div> | |
| <span class="px-5"> | |
| 500 | |
| </span> | |
| <button type="button" class="btn btn-outline-danger btn-sm"> | |
| <i class="fas fa-trash-alt"></i> | |
| </button> | |
| </div> | |
| </li> | |
| <li class="list-group-item d-flex justify-content-between"> | |
| <div class="d-flex flex-column"> | |
| Movie | |
| <small class="text-muted">Feb 12, 2019</small> | |
| </div> | |
| <div> | |
| <span class="px-5"> | |
| 1500 | |
| </span> | |
| <button type="button" class="btn btn-outline-danger btn-sm"> | |
| <i class="fas fa-trash-alt"></i> | |
| </button> | |
| </div> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment