-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwith-text-nowrap.html
More file actions
141 lines (139 loc) · 6.02 KB
/
with-text-nowrap.html
File metadata and controls
141 lines (139 loc) · 6.02 KB
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Material Design for Bootstrap</title>
<!-- MDB icon -->
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
/>
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
</head>
<body>
<!-- Start your project here-->
<div class="container justify-content-center mt-5">
<section>
<div class="table-responsive text-nowrap">
<!--Table-->
<table class="table table-striped">
<!--Table head-->
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Surname</th>
<th>Country</th>
<th>City</th>
<th>Position</th>
<th>Age</th>
</tr>
</thead>
<!--Table head-->
<!--Table body-->
<tbody>
<tr>
<th scope="row">1</th>
<td>Kate</td>
<td>Moss</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>23</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Anna</td>
<td>Wintour</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>36</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Tom</td>
<td>Bond</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>25</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Jerry</td>
<td>Horwitz</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>41</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Janis</td>
<td>Joplin</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>39</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Gary</td>
<td>Winogrand</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>37</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Angie</td>
<td>Smith</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>52</td>
</tr>
<tr>
<th scope="row">8</th>
<td>John</td>
<td>Mattis</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>28</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Otto</td>
<td>Morris</td>
<td>USA / The United Kingdom / China / Russia</td>
<td>New York City / Warsaw / Lodz / Amsterdam / London / Chicago</td>
<td>Web Designer /UX designer / Ul designer / JavaScript Developer</td>
<td>35</td>
</tr>
</tbody>
<!--Table body-->
</table>
<!--Table-->
</div>
</section>
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>