You are on page 1of 4

1 .

CREATE A WEBPAGE WITH THE FOLLOWING LINKS

<html>

<table border="1px" cellpadding="20px">

<tr>

<td colspan="2">

<center>

<img src="logo.jpeg"><h4 style="display: inline;">Join the largest educational network</h4>

<body bgcolor="pink">

</center>

</td>

</tr>

<tr>

<td width="60%"><h2><u><center>Our Mission</center></u></h2><br>


Our focus is to provide students with an integrated approach to standardized

tests and college applications. We put all of the pieces together and put the

process into perspective to minimize stress. By giving students unparalleled

access to experienced teachers, we ensure that we will maximize every

student&#39;s potential for success.<br>

<a href="check.html">Check eligibility</a>

<a href="gallerty.html">Activities</a>

<a href="art.html">Students Project</a>

</td>

<td width="40%">

<h2>Sign Up Today</h2><br>

Name: <input type="text"><br>

Gender: <input type="Checkbox" value="Male">Male<input type="Checkbox"


value="Female">Female<br>

Birthday: <input type="text"><br>

Country: <input type="text"><BR>

<center><input type="button" value="Sign Up"></center>

</td>

</tr>

</table>

</html>

II. JAVASCRIPT
<html>

<head>

<script type="text/javascript">

function cal()

a=Number(document.calculator.number1.value);

if(a>=80)

{alert("You are eligible");}

else if(a<80 && a>=60)

{alert("Eligibility Pending");}

else if(a<60)

{alert("You are not eligible");}


}

</script>

</head>

<body>

<form name="calculator">

<input type="text" name="number1">

<br>

<br>

<input type="button" value="check eligibility" onclick="cal()">

</form>

</body>

</html>

You might also like