-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
156 lines (113 loc) · 3.65 KB
/
tables.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Flexify Frontend Framework</title>
<link href="css/flexify.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body class="fx-wrap">
<nav class="fx-u-bg-black">
<div class="fx-container fx-container--xl">
<ul class="fx-menu fx-menu--dark">
<li class="fx-menu__wrap-level-2">
<a href="index.html">Flexify Home</a>
<ul class="fx-menu__level-2">
<li><a href="faq.html">FAQ</a></li>
</ul>
</li>
<li class="fx-menu__wrap-level-2">
<a href="grid.html">Grid</a>
<ul class="fx-menu__level-2">
<li><a href="grid.html">Grid</a></li>
<li><a href="flexbox.html">Flexbox</a></li>
</ul>
</li>
<li class="fx-menu__wrap-level-2">
<a href="typography.html">Content</a>
<ul class="fx-menu__level-2">
<li><a href="typography.html">Typography</a></li>
<li><a href="tables.html">Tables</a></li>
</ul>
</li>
<li class="fx-menu__wrap-level-2">
<a href="buttons.html">Components</a>
<ul class="fx-menu__level-2">
<li><a href="buttons.html">Buttons</a></li>
<li><a href="controls.html">Form controls</a></li>
<li><a href="columns.html">Columns</a></li>
<li><a href="menu.html">Menu</a></li>
</ul>
</li>
<li><a href="utilities.html">Utilities</a></li>
<li><a href="https://github.com/webvitalii/flexify/">GitHub</a></li>
</ul><!-- .fx-menu -->
</div><!-- .fx-container -->
</nav>
<section class="fx-container fx-container--xl">
<div class="fx-g">
<section class="fx-g__box fx-g__box--9 fx-typography">
<h1 class="fx-h1">Tables</h1>
<h3 class="fx-h3">Add class .fx-table to the html table element</h3>
<table class="fx-table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Brenda</td>
<td>Bear</td>
</tr>
<tr>
<td>2</td>
<td>Frank</td>
<td>Fox</td>
</tr>
<tr>
<td>3</td>
<td>William</td>
<td>Wolf</td>
</tr>
</tbody>
</table>
</section><!-- .fx-g__box -->
<aside class="fx-g__box fx-g__box--3 fx-bg-gray-lightest">
<div class="textwidget custom-html-widget">
<a href="https://1.envato.market/my6mZ">
<img src="http://web-profile.net/wp-content/uploads/iframe-advanced-pro-e1569324802975.png"
alt="" width="220" height="156" class="">
</a>
</div>
<script async src="http://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- Universal Responsive -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-5207574527239705"
data-ad-slot="3447834479"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</aside><!-- .fx-g__box -->
</div><!-- .fx-g -->
<footer class="site-footer fx-text-right">
<a href="http://web-profile.net/" target="_blank">Developed by web-profile.net</a>
</footer>
</section><!-- .fx-container -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76870586-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>