forked from Furkan-Gulsen/HTML-CSS-JAVASCRIPT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
125 lines (122 loc) · 3.72 KB
/
main.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
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
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CARD GAME</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="\css\main.css">
<script src="/javascript/main.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div id="backWall">
<div id="modalBox">
<img id="img" alt="person" src="">
<h3 id="fullName">s</h3>
<div>ID: <label id="id"></label></div>
<div>Age: <label id="age"></label></div>
<div>From: <label id="from"></label></div>
<div>Job: <label id="job"></label></div>
<span class="close">×</span>
</div>
</div>
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th scope="col">ID</th>
<th scope="col">First Name</th>
<th scope="col">Last Name</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Furkan</td>
<td>Gulsen</td>
<td>
<button class="btn btn-dark more" id="furkan">MORE</button>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Allen</td>
<td>
<button class="btn btn-dark more" id="Jacob">MORE</button>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Maria</td>
<td>Quenn</td>
<td>
<button class="btn btn-dark more" id="maria">MORE</button>
</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Jack</td>
<td>Jones</td>
<td>
<button class="btn btn-dark more" id="jack">MORE</button>
</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Harry</td>
<td>Williams</td>
<td>
<button class="btn btn-dark more" id="harry">MORE</button>
</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Charlie</td>
<td>Brown</td>
<td>
<button class="btn btn-dark more" id="charlie">MORE</button>
</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Emily</td>
<td>Taylor</td>
<td>
<button class="btn btn-dark more" id="emily">MORE</button>
</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Ava</td>
<td>Davies</td>
<td>
<button class="btn btn-dark more" id="ava">MORE</button>
</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Jessica</td>
<td>Wilson</td>
<td>
<button class="btn btn-dark more" id="jessica">MORE</button>
</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Isabella</td>
<td>Evans</td>
<td>
<button class="btn btn-dark more" id="isabella">MORE</button>
</td>
</tr>
</tbody>
</table>
</body>
</html>