-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
107 lines (102 loc) · 4.25 KB
/
pricing.html
File metadata and controls
107 lines (102 loc) · 4.25 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
<!DOCTYPE html>
<html lang="en">
<head profile>
<title>alchemicode</title>
<link rel="icon" type="image/png" href="images/logos/alchemi.png">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J13940R079">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-J13940R079');
</script>
</head>
<body>
<div class="glass">
<div id="header">
<a href="https://alchemicode.com" id="header_link">
<h1 id="header_text"><img src="images/logos/alchemi.png" id="header_logo" height="80px" width="80px"></h1>
</a>
<div id="nav_links">
<a href="index.html">Home</a>
<a href="products.html">Portfolio</a>
<a href="pricing.html">Pricing</a>
<a href="contact.html">Contact</a>
</div>
</div>
</div>
<div class="page-block bg-purple">
<div>
<h2 class="content-header bottom-left-shadow fade-in-from-left">
Pricing
</h2>
<h3 class="subcontent-header bottom-left-shadow fade-in-from-left delay-animation">
Hourly rates are approximate ranges
</h3>
<h3 class="subcontent-header bottom-left-shadow fade-in-from-left delay-animation">
Cost can vary based on service and technologies used.
</h3>
</div>
<!-- This needs to be one line otherwise it renders a space between them I wanna end something-->
<h1 class="giant-text bottom-left-shadow fade-in delay-animation">-><p class="in-out-fade" style="display:inline-block;">_</p>
</h1>
</div>
<div class="page-section">
<table>
<tr>
<td align="center">
<h2 style="font-size: 40px;">Web Development</h2>
<h2 class="bottom-left-shadow fade-in" style="font-size: 36px;">
$24-48
<div class="bottom-left-shadow fade-in" style="display:inline-block; font-size: 32px;">
/hr
</div>
</h2>
</td>
<td align="center">
<h2 style="font-size: 40px;">Software Development</h2>
<h2 class="bottom-left-shadow fade-in" style="font-size: 36px;">
$36-72
<div class="bottom-left-shadow fade-in" style="display:inline-block; font-size: 32px;">
/hr
</div>
</h2>
</td>
</tr>
<tr>
<td align="center">
<h2 style="font-size: 40px;">System Administration</h2>
<h2 class="bottom-left-shadow fade-in" style="font-size: 36px;">
$24-48
<div class="bottom-left-shadow fade-in" style="display:inline-block; font-size: 32px;">
/hr
</div>
</h2>
<h2 class="bottom-left-shadow fade-in" style="font-size: 36px;">
$45
<div class="bottom-left-shadow fade-in" style="display:inline-block; font-size: 32px;">
Emergency fee
</div>
</h2>
</td>
<td align="center">
<h2 style="font-size: 40px;">Media Services</h2>
<h2 class="bottom-left-shadow fade-in" style="font-size: 36px;">
$18-36
<div class="bottom-left-shadow fade-in" style="display:inline-block; font-size: 32px;">
/hr
</div>
</h2>
</td>
</tr>
</table>
</div>
<div id="copyright">
Copyright (c) 2024, alchemicode. All Rights Reserved.
</div>
</body>
</html>