Skip to content

Commit 36b41c2

Browse files
committed
Update
1 parent 998bc27 commit 36b41c2

File tree

360 files changed

+49149
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+49149
-21
lines changed

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

License.pdf

252 KB
Binary file not shown.

assets/with-auto-width.png

35.5 KB
Loading

assets/with-fixed-width.png

28.3 KB
Loading

assets/with-minimal-width.png

40.2 KB
Loading

assets/with-text-nowrap.png

73 KB
Loading

basic.html

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
6+
<meta http-equiv="x-ua-compatible" content="ie=edge" />
7+
<title>Material Design for Bootstrap</title>
8+
<!-- MDB icon -->
9+
<link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon" />
10+
<!-- Font Awesome -->
11+
<link
12+
rel="stylesheet"
13+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
14+
/>
15+
<!-- Google Fonts Roboto -->
16+
<link
17+
rel="stylesheet"
18+
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
19+
/>
20+
<!-- MDB -->
21+
<link rel="stylesheet" href="css/mdb.min.css" />
22+
</head>
23+
<body>
24+
<!-- Start your project here-->
25+
<div class="container d-flex justify-content-center mt-5">
26+
<section>
27+
<!--Table-->
28+
<table class="table table-striped w-auto">
29+
<!--Table head-->
30+
<thead>
31+
<tr>
32+
<th>#</th>
33+
<th>Name</th>
34+
<th>Surname</th>
35+
<th>Country</th>
36+
<th>City</th>
37+
<th>Position</th>
38+
<th>Age</th>
39+
</tr>
40+
</thead>
41+
<!--Table head-->
42+
43+
<!--Table body-->
44+
<tbody>
45+
<tr class="table-info">
46+
<th scope="row">1</th>
47+
<td>Kate</td>
48+
<td>Moss</td>
49+
<td>USA</td>
50+
<td>New York City</td>
51+
<td>Web Designer</td>
52+
<td>23</td>
53+
</tr>
54+
<tr>
55+
<th scope="row">2</th>
56+
<td>Anna</td>
57+
<td>Wintour</td>
58+
<td>United Kingdom</td>
59+
<td>London</td>
60+
<td>Frontend Developer</td>
61+
<td>36</td>
62+
</tr>
63+
<tr class="table-info">
64+
<th scope="row">3</th>
65+
<td>Tom</td>
66+
<td>Bond</td>
67+
<td>Spain</td>
68+
<td>Madrid</td>
69+
<td>Photographer</td>
70+
<td>25</td>
71+
</tr>
72+
<tr>
73+
<th scope="row">4</th>
74+
<td>Jerry</td>
75+
<td>Horwitz</td>
76+
<td>Italy</td>
77+
<td>Bari</td>
78+
<td>Editor-in-chief</td>
79+
<td>41</td>
80+
</tr>
81+
<tr class="table-info">
82+
<th scope="row">5</th>
83+
<td>Janis</td>
84+
<td>Joplin</td>
85+
<td>Poland</td>
86+
<td>Warsaw</td>
87+
<td>Video Maker</td>
88+
<td>39</td>
89+
</tr>
90+
<tr>
91+
<th scope="row">6</th>
92+
<td>Gary</td>
93+
<td>Winogrand</td>
94+
<td>Germany</td>
95+
<td>Berlin</td>
96+
<td>Photographer</td>
97+
<td>37</td>
98+
</tr>
99+
<tr class="table-info">
100+
<th scope="row">7</th>
101+
<td>Angie</td>
102+
<td>Smith</td>
103+
<td>USA</td>
104+
<td>San Francisco</td>
105+
<td>Teacher</td>
106+
<td>52</td>
107+
</tr>
108+
<tr>
109+
<th scope="row">8</th>
110+
<td>John</td>
111+
<td>Mattis</td>
112+
<td>France</td>
113+
<td>Paris</td>
114+
<td>Actor</td>
115+
<td>28</td>
116+
</tr>
117+
<tr class="table-info">
118+
<th scope="row">9</th>
119+
<td>Otto</td>
120+
<td>Morris</td>
121+
<td>Germany</td>
122+
<td>Munich</td>
123+
<td>Singer</td>
124+
<td>35</td>
125+
</tr>
126+
</tbody>
127+
<!--Table body-->
128+
</table>
129+
<!--Table-->
130+
</section>
131+
</div>
132+
<!-- End your project here-->
133+
134+
<!-- MDB -->
135+
<script type="text/javascript" src="js/mdb.min.js"></script>
136+
<!-- Custom scripts -->
137+
<script type="text/javascript"></script>
138+
</body>
139+
</html>

css/mdb.dark.min.css

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/mdb.dark.rtl.min.css

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)