-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprice-range-table.html
More file actions
80 lines (67 loc) · 1.62 KB
/
price-range-table.html
File metadata and controls
80 lines (67 loc) · 1.62 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
<style>
/* styles.css */
.pricing-table {
width: 85%;
border-collapse: collapse;
display: inline-block;
justify-content: center;
align-items: center;
margin-left: 160px;
}
.pricing-table th,
.pricing-table td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
font-size: 16px;
}
.pricing-table th {
background-color: #f2f2f2;
}
.pricing-table a {
color: black;
}
@media (max-width: 768px) {
.pricing-table {
width: 100%;
margin: 0 auto; /* Remove margins for smaller screens */
}
.pricing-table th,
.pricing-table td {
padding: 6px; /* Reduce cell padding for smaller screens */
font-size: 14px; /* Reduce font size for smaller screens */
}
}
</style>
<table class="pricing-table">
<tr>
<th class="th-pricing-table">Service Category</th>
<th class="th-pricing-table">Price Range</th>
</tr>
<tr>
<td>
<a href="#staff-augmentation">Staff Augmentation</a>
</td>
<td>$39/hr to $199/hr</td>
</tr>
<tr>
<td><a href="#recruiting-service">Recruiting Service</a></td>
<td>15% of the first year's pay</td>
</tr>
<tr>
<td><a href="#venture-studio">Venture Studio</a></td>
<td>19% to 29% of revenue</td>
</tr>
<tr>
<td><a href="#agency-service">Agency Services</a></td>
<td>
Hourly rates starting at $59/hr. Fixed price also available. Minimum spend
$9k
</td>
</tr>
<tr>
<td><a href="#sharetribe-services">Sharetribe Develoment</a></td>
<td>Hosting setup is free</td>
</tr>
<!-- Add more rows and data here if needed -->
</table>