-
Notifications
You must be signed in to change notification settings - Fork 0
/
tabela.html
142 lines (131 loc) · 3.99 KB
/
tabela.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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Exercicio Tabela</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<table > <!--tag para tabela-->
<thead>
<tr class="tr1">
<th rowspan="2"></th>
<th class="thead1">
<p>Self-Employed & Freelance</p>
</th>
<th class="thead2" colspan="3">
<p>Small business that need
accounting invoicing or payroll</p>
</th>
</tr>
<tr>
<th>
<h2>Self-Employed</h2>
<a href="#" class="botao">buy now</a>
</th>
<th>
<h2>Simple Start</h2>
<a href="#" class="botao">buy now</a>
</th>
<th>
<h2>Essentials</h2>
<a href="#" class="botao">buy now</a>
</th>
<th>
<h2>Plus</h2>
<a href="#" class="botao">buy now</a>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<h1>Separate business/personal</h1>
</td>
<td class="check-blue">✔</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<h1>Estimate tax payment</h1>
</td>
<td class="check-blue">✔</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<h1>Track deductible milleage</h1>
</td>
<td class="check-blue">✔</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>
<h1>Download online banking</h1>
</td>
<td class="check-blue">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
</tr>
<tr>
<td>
<h1>Multi-device</h1>
</td>
<td class="check-blue">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
</tr>
<tr>
<td>
<h1>Create Invoices & estimate</h1>
</td>
<td></td>
<td class="check-green">✔ </td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
</tr>
<tr>
<td>
<h1>Manage VAT</h1>
</td>
<td></td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
</tr>
<tr>
<td>
<h1>Run payroll</h1>
</td>
<td></td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
<td class="check-green">✔</td>
</tr>
<tr>
<td>
<h1>Numbers of user</h1>
</td>
<td>
<h3>1 user</h3>
</td>
<td>
<h3>1 user</h3>
</td>
<td>
<h3>3 users</h3>
</td>
<td>
<h3>5 users</h3>
</td>
</tr>
</tbody>
</body>