-
Notifications
You must be signed in to change notification settings - Fork 0
/
Corporate Tax.html
188 lines (171 loc) · 5.68 KB
/
Corporate Tax.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Corporate Tax</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
height: 100vh;
}
.upper-section {
flex: 1;
background-color: #FFF593;
text-align: center;
animation: slide-up 1s ease-in-out;
padding-top: 50px;
}
.upper-section h1 {
font-size: 36px;
color: #333;
}
.upper-section h2 {
font-size: 24px;
color: #555;
}
.lower-section {
flex: 4;
display: flex;
}
.left-section {
flex: 2;
background-color: #92dcf5;
padding: 20px;
animation: slide-left 1s ease-in-out;
animation-play-state: running;
}
.left-section p {
font-size: 16px;
line-height: 1.5;
color: #333;
}
.left-section h2 {
font-size: 24px;
color: #333;
}
.right-section {
flex: 1;
background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR6tK0lGoAIYv6Nqvq0Hf1ayIhy7c6PagjulA&usqp=CAU');
padding: 10px;
background-size: cover;
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid black;
}
form {
border: 4px solid black;
border-radius: 10px;
padding: 30px;
margin: 20px;
background-color: #f9f9f9;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
font-size: 18px;
color: #333;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid black;
border-radius: 5px;
margin-bottom: 10px;
font-size: 16px;
}
button[type="submit"] {
background-color: lightblue;
color: white;
border: none;
padding: 10px 20px;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 18px;
font-weight: bold;
}
button[type="submit"]:hover {
background-color: darkblue;
}
button[type="submit"]:focus {
outline: none;
box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
}
@keyframes slide-up {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes slide-left {
0% {
transform: translateX(-100%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
</style>
</head>
<body>
<div class="container">
<div class="upper-section">
<h1>Corporate Tax</h1>
<h2>Empowering Businesses with Strategic Corporate Tax Solutions</h2>
</div>
<div class="lower-section">
<div class="left-section">
<p>Corporate tax compliance and optimization are crucial for businesses to ensure financial stability and growth. At Anandam Infolines, we offer professional corporate tax services to help you navigate the complex tax landscape. Here's what sets us apart:</p>
<h2>Expert Tax Advisors</h2>
<p>Our experienced tax professionals possess in-depth knowledge of corporate tax regulations and can guide you in managing tax compliance effectively.</p>
<h2>Tailored Tax Strategies</h2>
<p>We understand that every business is unique. Our team develops personalized tax strategies to optimize your corporate tax obligations and maximize tax efficiency.</p>
<h2>Comprehensive Tax Solutions</h2>
<p>From tax planning and structuring to tax return filing and advisory services, we provide end-to-end solutions to meet your corporate tax needs.</p>
<h2>Domestic and Foreign Taxation</h2>
<p>Whether you're a domestic or foreign company, we have the expertise to assist you in complying with the Indian corporate tax requirements.</p>
<h2>Proactive Tax Management</h2>
<p>We stay updated with the latest tax laws and amendments, ensuring that you benefit from potential tax incentives and deductions while remaining compliant.</p>
<p>Partner with Anandam Infolines to streamline your corporate tax obligations, minimize tax liabilities, and achieve long-term financial success.</p>
</div>
<div class="right-section">
<form>
<h1>Let's Craft Your Business</h1>
<label for="name">Name:</label>
<input type="text" id="name" name="name" />
<br /><br />
<label for="phone">Phone:</label>
<input type="text" id="phone" name="phone" />
<br /><br />
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
<br /><br />
<textarea
name="text"
id="text"
cols="10"
rows="5"
placeholder="Write your Concern here"
></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>