0% found this document useful (0 votes)
27 views

Computer File Class 10

The document contains HTML code for a login form with input fields for email and password. There is also code for a table to display student data with roll numbers, names, and marks. Additional code samples include one with image linking, another with spanning in a table, and a final project code sample for an online registration form.

Uploaded by

anshuman56432
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views

Computer File Class 10

The document contains HTML code for a login form with input fields for email and password. There is also code for a table to display student data with roll numbers, names, and marks. Additional code samples include one with image linking, another with spanning in a table, and a final project code sample for an online registration form.

Uploaded by

anshuman56432
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

Code-1

<html>
<head> <title> RITISHA JAIN FORM ASSIGN1 </TITLE>
</HEAD>
<BODY BGCOLOR="GREEN" text=red>
<h3>LOGIN FORM</h3>
<FORM>
<FONT COLOR="RED" >
LOGIN:<INPUT TYPE="TEXT" NAME="NAME" VALUE="ENTER EMAIL ID"
>
<BR>
<BR>
PASSWORD: <INPUT TYPE="PASSWORD" NAME="PASSWORD" SIZE="8">
<br>
<br>
<INPUT TYPE="SUBMIT" VALUE="SUBMIT">
<INPUT TYPE="RESET" VALUE="RESET">
</FONT>
</FORM>
</BODY>
</HTML>
Code-2
<html>
<head><title>Assignment 2</title></head>
<body >
<style>
h1{font-weight:bold}
p{background-color:yellow; color:maroon}
</style>
<center><h1>MY SCHOOL </h1></center>
<table align=center cellspacing=5 cellpadding=5>
<tr><td>
<p>I study in ASSISI CONVENT SCHOOL,ETAH.</p>
<tr><td>
<p>IT is situated in AGRA road.</p>
<tr><td>
<p>It is affiliated to CBSE New Delhi</p>
<tr<td>
<p>The Principle of my school is Rev.SR.Anjali Maria.</p>
<tr><td>
<p>
I love my school very much
</p>
</table>
</body>
</html>
Code-3
<html>
<head>
<title>RITISHA TABLE</TITLE>
</HEAD>
<BODY>
<TABLE BGCOLOR="CYAN" BORDER="5">
<CAPTION>STUDENT DATA</CAPTION>
<TR>
<TH>ROLL NO.</TH>
<TH>NAME</TH>
<TH>MARKS</TH>
</TR>
<TD>1</TD>
<TD>AKSHITA</TD>
<TD>87</TD>
</TR>
<TR>
<TD>2</TD>
<TD>AMIT</TD>
<TD>94</TD>
</TR>
</TABLE>
</BODY>
</HTML>

Code-4
<HTML>
<HEAD>
<TITLE>RITISHA IMAGE LINKING</TITLE>
</HEAD>
<BODY>
<H1>IMAGE AS HYPERLINK</H1>
<A Href="abc.html">
<img src="C:\Users\anshuman jain\Desktop\computer aplication projet file\OIP.jpeg"
width="150" height="100">
</A>
</BODY>
</HTML>

Code-5
<html>
<head>
<title> RITISHA JAIN FORM ASSIGN5 </TITLE>
</HEAD>
<BODY>
<CENTER>
<TABLE BGCOLOR="RED" BORDER="5" CELLPADDING="10">
<TR>
<TH ALIGN="CENTER" COLSPAN="3">SHOWING SPANNING IN TABLE
</TH>
</TR>
<TR>
<TD ALIGN="CENTER">A </TD>
<TD ALIGN="CENTER">B </TD>
<TD ALIGN="CENTER">C </TD>
</TR>
</TABLE>
</BODY>
</HTML>

Project-Code
<html>
<head>
<title>COMPUTER PROJECT</title>
<style>
.sel{font-size:25px; background-color:pink}
h1{font-family:bold}
td{font-size:25px
</style>
</head>
<body align=center >
<h1>RIGESTRARION FORM</h1>
<table cellspacing=10 align=center>
<form>
<tr><td>Name
<td><input class=sel type=text size=25>
<tr><td>Email ID
<td><input class=sel type=text size=25>
<tr><td>Contact No.
<td><input class=sel type=text size=25>
<tr><td>Gender
<td><input type=radio name=gender value=male>Male <input type=radio
name=gender value=female>Female
<tr><td>Exam Appeared In
<td><input type=checkbox checked >PA1
<input type=checkbox>PA2
<tr><td>Select city
<td><select class=sel >
<option selected>etah
<option>noida
<option>mumbai
<option>chennai
</tr>
<tr><td>
<td>
<input class=sel type=submit value=SUBMIT>
<input class=sel type=reset value=RESET>
</table>
</form>
</html>

Output-1
Output-2

Output-3
Output-4

Output-5
Project-Output

You might also like