|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <title>CARD GAME</title> |
| 6 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> |
| 7 | + <link rel="stylesheet" href="\css\main.css"> |
| 8 | + <script src="/javascript/main.js"></script> |
| 9 | + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"> |
| 10 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
| 11 | + <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> |
| 12 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 13 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> |
| 14 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script> |
| 15 | + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> |
| 16 | + </head> |
| 17 | +<body> |
| 18 | + |
| 19 | + <div id="backWall"> |
| 20 | + <div id="modalBox"> |
| 21 | + <img id="img" alt="person" src=""> |
| 22 | + <h3 id="fullName">s</h3> |
| 23 | + <div>ID: <label id="id"></label></div> |
| 24 | + <div>Age: <label id="age"></label></div> |
| 25 | + <div>From: <label id="from"></label></div> |
| 26 | + <div>Job: <label id="job"></label></div> |
| 27 | + <span class="close">×</span> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + |
| 31 | + <table class="table table-striped"> |
| 32 | + <thead class="thead-dark"> |
| 33 | + <tr> |
| 34 | + <th scope="col">ID</th> |
| 35 | + <th scope="col">First Name</th> |
| 36 | + <th scope="col">Last Name</th> |
| 37 | + <th scope="col"></th> |
| 38 | + </tr> |
| 39 | + </thead> |
| 40 | + <tbody> |
| 41 | + <tr> |
| 42 | + <th scope="row">1</th> |
| 43 | + <td>Furkan</td> |
| 44 | + <td>Gulsen</td> |
| 45 | + <td> |
| 46 | + <button class="btn btn-dark more" id="furkan">MORE</button> |
| 47 | + </td> |
| 48 | + </tr> |
| 49 | + <tr> |
| 50 | + <th scope="row">2</th> |
| 51 | + <td>Jacob</td> |
| 52 | + <td>Allen</td> |
| 53 | + <td> |
| 54 | + <button class="btn btn-dark more" id="Jacob">MORE</button> |
| 55 | + </td> |
| 56 | + </tr> |
| 57 | + <tr> |
| 58 | + <th scope="row">3</th> |
| 59 | + <td>Maria</td> |
| 60 | + <td>Quenn</td> |
| 61 | + <td> |
| 62 | + <button class="btn btn-dark more" id="maria">MORE</button> |
| 63 | + </td> |
| 64 | + </tr> |
| 65 | + <tr> |
| 66 | + <th scope="row">4</th> |
| 67 | + <td>Jack</td> |
| 68 | + <td>Jones</td> |
| 69 | + <td> |
| 70 | + <button class="btn btn-dark more" id="jack">MORE</button> |
| 71 | + </td> |
| 72 | + </tr> |
| 73 | + <tr> |
| 74 | + <th scope="row">5</th> |
| 75 | + <td>Harry</td> |
| 76 | + <td>Williams</td> |
| 77 | + <td> |
| 78 | + <button class="btn btn-dark more" id="harry">MORE</button> |
| 79 | + </td> |
| 80 | + </tr> |
| 81 | + <tr> |
| 82 | + <th scope="row">6</th> |
| 83 | + <td>Charlie</td> |
| 84 | + <td>Brown</td> |
| 85 | + <td> |
| 86 | + <button class="btn btn-dark more" id="charlie">MORE</button> |
| 87 | + </td> |
| 88 | + </tr> |
| 89 | + <tr> |
| 90 | + <th scope="row">7</th> |
| 91 | + <td>Emily</td> |
| 92 | + <td>Taylor</td> |
| 93 | + <td> |
| 94 | + <button class="btn btn-dark more" id="emily">MORE</button> |
| 95 | + </td> |
| 96 | + </tr> |
| 97 | + <tr> |
| 98 | + <th scope="row">8</th> |
| 99 | + <td>Ava</td> |
| 100 | + <td>Davies</td> |
| 101 | + <td> |
| 102 | + <button class="btn btn-dark more" id="ava">MORE</button> |
| 103 | + </td> |
| 104 | + </tr> |
| 105 | + <tr> |
| 106 | + <th scope="row">9</th> |
| 107 | + <td>Jessica</td> |
| 108 | + <td>Wilson</td> |
| 109 | + <td> |
| 110 | + <button class="btn btn-dark more" id="jessica">MORE</button> |
| 111 | + </td> |
| 112 | + </tr> |
| 113 | + <tr> |
| 114 | + <th scope="row">10</th> |
| 115 | + <td>Isabella</td> |
| 116 | + <td>Evans</td> |
| 117 | + <td> |
| 118 | + <button class="btn btn-dark more" id="isabella">MORE</button> |
| 119 | + </td> |
| 120 | + </tr> |
| 121 | + </tbody> |
| 122 | + </table> |
| 123 | + |
| 124 | +</body> |
| 125 | +</html> |
0 commit comments