-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLLP Registration.html
173 lines (157 loc) · 5.57 KB
/
LLP Registration.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLP Registration </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;
}
.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;
}
.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); /* Adjust the alpha value as needed (0.05 = 5% opacity) */
border: 1px solid black;
}
form {
border: 4px solid black;
border-radius: 10px;
padding: 30px; /* Adjust the padding as desired */
margin: 20px; /* Create a gap between form and right section */
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid black;
border-radius: 5px;
margin-bottom: 10px;
}
button[type="submit"] {
background-color: rgb(0, 191, 255);
color: white;
border: none;
padding: 10px 20px;
border-radius: 50px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: rgb(10, 212, 43);
}
button[type="submit"]:focus {
outline: none;
box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.5);
}
h1 {
font-size: 32px;
margin: 10px 0;
}
h2 {
font-size: 24px;
margin: 10px 0;
}
p {
font-size: 18px;
line-height: 1.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>LLP Registration with Anandam Infolines:</h1>
<h2>Streamline Your Business Structure</h2>
</div>
<div class="lower-section">
<div class="left-section">
<p><strong>Simplifying LLP Registration for Business Success</strong> </p>
<p>Welcome to Anandam Infolines, your trusted partner in the seamless registration of Limited Liability Partnerships (LLPs). We understand that choosing the right business structure is crucial for the success and growth of your venture. With our professional services, we aim to simplify the LLP registration process, ensuring that you can focus on building your business while we take care of the legal formalities.</p>
<h2>Why Choose LLP?</h2>
<ul>
<li><strong>Limited Liability:</strong> LLP provides the partners with limited liability protection, safeguarding their personal assets from the debts and liabilities of the business.</li>
<li><strong>Separate Legal Entity:</strong> An LLP is a separate legal entity, distinct from its partners. It can enter into contracts, own property, and conduct business in its own name.</li>
<li><strong>Perpetual Succession:</strong> Unlike traditional partnerships, LLPs can continue their existence even in the event of a partner's death, retirement, or insolvency, ensuring business continuity.</li>
<li><strong>Flexible Capital Structure:</strong> LLPs offer flexibility in terms of capital contribution, allowing partners to invest according to their agreed terms and preferences.</li>
<li><strong>Reduced Compliance Requirements:</strong> LLPs have lower compliance burdens compared to other business structures, resulting in simplified administrative procedures and reduced costs.</li>
</ul>
</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>