How do I add an availability search directly to my site?

You can add onto your website a search box in order to drive your visitors directly to the availability check of domain names.

To do this you will find two examples below. Copy and paste the HTML code and place it on your site to the place of your choice. The examples below are minimalist but you can customize the HTML to fit better on your site.

Your affiliate code is the handle of your account. Suppose your affiliate code is AA100, the parameter for tracking will be the hidden field partnerid with the value AA100.

				
					<form action="https://www.netim.com/en/domain-name/search" method="get">
	<input name="partnerid" type="hidden" value="AA100" />
	<table cellspacing="0" cellpadding="0" border="0" style="width: 425px; height: 60px; text-align: center">
		<tbody>
			<tr>
				<td colspan=2 style="padding-bottom: 10px;">
					Check the availability of your domain name!
				</td>
			</tr>
			<tr>
				<td>
					<a href="https://www.netim.com/en" target="_blank" style="display: block;">
						<img src="https://www.netim.com/img/logo-netim.svg" width="130px" />
					</a>
				</td>
				<td>
					<b style="visibility: visible;">www.</b>
					<input type="text" id="domain" name="domain" style="height:20px; width:210px; font-size:12px;" required />
					<br />
					<b style="visibility: hidden;">www.</b>
					<input type="submit" value="Search" style="height:20px; width:89px; cursor:pointer; margin-top: 10px" />
				</td>
			</tr>
		</tbody>
	</table>
</form>