-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (123 loc) · 4.18 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sap & Sap CORP</title>
<style>
/* Global Styles */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f7f7f7;
color: #333;
}
header {
background-color: #f8f8f8;
padding: 40px 0;
text-align: center;
border-bottom: 1px solid #e0e0e0;
}
.header-title {
font-size: 2.5em;
font-weight: 600;
margin: 0;
color: #333;
}
.contact-info {
font-size: 1em;
color: #666;
margin-top: 10px;
}
.contact-info span {
display: block;
margin: 5px 0;
}
.container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
h2 {
color: #333;
font-size: 2em;
font-weight: 500;
margin-bottom: 40px;
text-align: center;
}
.product {
background-color: #fff;
padding: 30px;
margin-bottom: 30px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
}
.product h3 {
font-size: 1.75em;
color: #333;
margin-bottom: 15px;
font-weight: 600;
}
.product img {
width: 80px;
margin-bottom: 20px;
}
.price {
font-size: 1.5em;
color: #0071e3;
margin: 10px 0 20px;
font-weight: 500;
}
.product p {
font-size: 1em;
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}
footer {
background-color: #f8f8f8;
color: #666;
text-align: center;
padding: 20px 0;
border-top: 1px solid #e0e0e0;
margin-top: 40px;
}
footer p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<h1 class="header-title">Sap & Sap CORP</h1>
<div class="contact-info">
<span>📞 +1 (929) 458-5353</span>
<span>📍 513 Brighton Beach Ave, 2nd Floor, Brooklyn, NY</span>
</div>
</header>
<div class="container">
<h2>Our Products and Services</h2>
<div class="product">
<h3>Tax Transcript</h3>
<p class="price">$30.00</p>
<p>We can order copies of tax records including transcripts of past tax returns, tax account information, wage and income statements, and verification of non-filing letters for you.</p>
</div>
<div class="product">
<h3>Individual Taxpayer Identification Number (ITIN)</h3>
<p class="price">$500.00</p>
<p>Our office will help you to obtain an ITIN for you or your loved ones. This identification number allows you to conduct limited transactions in the United States. Many non-resident aliens and foreign nationals doing business in the US may need an ITIN. We can help any eligible person who is ineligible or unable to receive a Social Security Number in obtaining an ITIN from the IRS. We are a licensed Acceptance Agent by the IRS.</p>
</div>
<div class="product">
<h3>1099 Form</h3>
<p class="price">$30.00</p>
<p>If you’re getting started as a freelancer or your small business is contracting outside help, you’ve probably heard of IRS Form 1099. But what is it, exactly? And how do you file it? Here’s the simple answer: different IRS 1099 forms report various types of income to the IRS. We're here to help, and we charge only $30 for filing a 1099 Form.</p>
</div>
</div>
<footer>
<p>© 2024 Sap & Sap CORP. All rights reserved.</p>
</footer>
</body>
</html>