You are on page 1of 7

Internet Technologies

ASSIGNMENT- 7

KUSHAR RAJ KASHYAP

BCA/15043

BIT PATNA
1.Search and access the domain registration with domain
extension?

ANSWER:-

1. Find a Credible Domain Registrar.


A domain registrar is a company that is responsible for
registering and managing domain names.
• Pricing
• Domain expiration policy
• Add-on services.
• Domain transfer policy

2. Run a Domain Name Search.

Now that you have found a registrar through which


to register your domain, the next step is to perform a domain
name search. When choosing a domain name, make sure to pick
the right domain extension as well – it’s the suffix at the end of a
web address.

• Country Code Top-Level Domain


• Sponsored Top-Level Domain
• Generic Top-Level Domain

3. Pick Your Domain.


To purchase a domain at any domain website, continue
the process from the domain checker page and press the Add to
cart button next to the domain. Then, click Continue to cart.
4. Complete the Domain Registration.
As soon as you have completed the payment, you’ll be redirected
to the control panel. Inside, there will be a setup box that you’ll
need to fill out to complete the domain name registration.
You’ll need to fill in all the fields with the correct details, such
as your name, address, and contact information. This data will be
stored on WHOIS, the official domain ownership database.

5. Verify the Ownership of Your New Domain.


The final step is to verify the domain ownership through the
email address you used when registering the domain. The email
usually arrives within a few minutes after finishing the domain
setup. Simply click the verification link in the email to verify
your contact information.

That’s all there is to it. Now you know how to buy a domain
name and complete the initial registration process.

2. Create html to display and verify of first name, last name,


address, pincode and verify button.

CODE:-
<html>
<head>
<title>Student Registration Form</title>
<style>
body{

background-color: #D1FF96;
}
fieldset{
background-color: #8AFFFB
;
}
h1{
color: black;
}
</style>

</head>
<body>
<h1>
<center>STUDENT REGISTRATION FORM</center>
</h1>
<form>
<fieldset>
<legend style="font-size: 23px;">
<b>Student Personal Information</b>
</legend>

<table align="center" cellpadding="10">

<tr>
<td>FIRST NAME</td>
<td><input type="text" name="First_Name" maxlength="30" />
(max 30 characters a-z and A-Z)
</td>
</tr>

<tr>
<td>LAST NAME</td>
<td><input type="text" name="Last_Name" maxlength="30" />
(max 30 characters a-z and A-Z)
</td>
</tr>

<tr>
<td>EMAIL ID</td>
<td><input type="text" name="Email_Id" maxlength="100" /></td>
</tr>

<tr>
<td>MOBILE NUMBER</td>
<td>
<input type="text" name="Mobile_Number" maxlength="10" />
(10 digit number)
</td>
</tr>

<tr>
<td>GENDER</td>
<td>
Male <input type="radio" name="Gender" value="Male" />
Female <input type="radio" name="Gender" value="Female" />
</td>
</tr>
<tr>
<td>ADDRESS <br /><br /><br /></td>
<td><textarea name="Address" rows="4" cols="30"></textarea></td>
</tr>

<tr>
<td>CITY</td>
<td><input type="text" name="City" maxlength="30" />
(max 30 characters a-z and A-Z)
</td>
</tr>

<tr>
<td>PIN CODE</td>
<td><input type="text" name="Pin_Code" maxlength="6" />
(6 digit number)
</td>
</tr>

<tr>
<td>STATE</td>
<td><input type="text" name="State" maxlength="30" />
(max 30 characters a-z and A-Z)
</td>
</tr>

<tr>
<td>COUNTRY</td>
<td><input type="text" name="Country" value="India" readonly="readonly
" /></td>
</tr>

<tr>
<td colspan="2" align="center">
<input type="button" value="Verify">
<input type="reset" value="Reset">
</td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
OUTPUT

3.Create html to display CSS for “Birla Institute of Technology”


with Font, Color, Background Color.

CODE
<!DOCTYPE html>
<head>
<title>BIT</title>
<style>
*{
background-color:greenyellow;
}
p{
font-family:'Lucida Grande', 'Lucida Sans';
color:#810b2b;
font-size: 50px;
}
</style>
</head>
<body>
<p>Birla Institute Of Technology</p>
</body>
</html>

OUTPUT

You might also like