Skip to main content

HTML TABLE implementation

<html>

<head>

<title>
exp3 </title>

</head>

<body>

<table border=2 width=80% cellpadding=6 cellspacing=4 >
<caption align =top> <h2><u>Department of computer science and engineering Info<BR>CSB(Time Table)</u></CAPTION>

<TR><TD>DAY</TD>
<TD>1</TD><TD>2</TD><TD>3</TD><TD>4</TD><TD>5</TD><TD>6</TD><TD>7</TD><TD>8</TD><TD>9</TD>
<tr>
 <th align=center> MON </TH>
<td> Engineering Economics<br> <center>ms anjali dubey</center>
<td cOlspan=2 BGCOLOR="GREEN"> 3F 03<BR>ESP<BR>PDP-B</td>

<td> <CENTER>DBMS <BR>MS.ARCHANA SHARMA</CENTER>
<td> <CENTER>DBMS <BR>MS.ARCHANA SHARMA</CENTER>
<TD rowspan=5> <B>L<br><BR><BR><BR>U<br><BR><BR><BR>N<BR><BR><BR><BR>C<BR><BR><BR><BR>H<br><BR><BR> </B> </TD>

<TD>Design and Analysis of algorithm <br> Mr. Kaushal Kishor</td>

<TD>Design and Analysis of algorithm <br> Mr. Kaushal Kishor</td>
<TD> Computer architechture <br>ms. Shivani Sharma</td>

</tr>

<th> TUE</TH>
<TD> PPL<BR> Ms. Kajal mittal</td>
<TD> PPL<BR> Ms. Kajal mittal</td>

<TD>web tech<BR> Mr. Gaurav Agrawal</td>
<TD> DAA<BR> MR.KAUSHAL KISHOR</td>

<TD> Engineering Economics<BR> Ms. anjali dubey</td>
<TD> DBMS<BR> Ms. ARCHANA SHARMA</td>
<TD> WEB TECH<BR> MR. GAURAV AGRAWAL</td>

<TD> DBMS<BR> Ms. ARCHANA SHARMA</td>
</TR>
<th> WED</TH>

<TD> DAA<BR> MR.KAUSHAL KISHOR</td>

<TD> DBMS<BR> Ms. ARCHANA SHARMA</td>











<TD>web tech<BR> Mr. Gaurav AGRAWAL</td>
<td cOlspan=2 BGCOLOR="RED"> Web Tech Lab GRP1<BR> <BR>DAA LAB GRP2<BR></td>

<TD> Computer architechture <br>ms. Shivani Sharma</td>

<TD> Computer architechture <br>ms. Shivani Sharma</td>

<TD> PPL<BR> Ms. Kajal mittal</td>

</TR>
<TH> THU</TH>
<TD> Engineering Economics<BR> Ms. anjali dubey</td>

<td cOlspan=2 BGCOLOR="YELLOW"> DAA Lab GRP1<BR> <BR>PPL LAB GRP2<BR></td>


<TD> Computer architechture <br>ms. Shivani Sharma</td>

<TD> DAA<BR> MR.KAUSHAL KISHOR</td>

<TD> PPL<BR> Ms. Kajal mittal</td>

<TD>WEB TECH<BR> Mr. Gaurav AGRAWAL</td>
<TD> HOD INTRACATION</TD></TR>
<th> FR</TH>

<TD> DAA<BR> MR.KAUSHAL KISHOR</td>

<TD>WEB TECH<BR> Mr. Gaurav AGRAWAL</td>
<TD> Computer architechture <br>ms. Shivani Sharma</td>
<td cOlspan=2 BGCOLOR="BLUE"> PPL Lab GRP1<BR> <BR>DBMS LAB GRP2<BR></td>

<TD> PPL<BR> Ms. Kajal mittal</td>

<td cOlspan=2 BGCOLOR="PINK"> DBMS Lab GRP1<BR> <BR>WEB TECH LAB GRP2<BR></td>
</TR>
</table>
</body>
</html>

Comments

Popular posts from this blog

JAVA program of showing the student marksheet

package june13; import java.util.Scanner; public class student { int roll; String name; String email; int hindi,english,physics,chemistry,maths; void  input_details(){ System.out.println("please enter the following details "); Scanner sc= new Scanner(System.in); System.out.println("enter the roll number "); roll=sc.nextInt(); System.out.println("enter the name of student "); name=sc.next(); System.out.println(" enter the email"); email=sc.next(); System.out.println(" enter the marks of hindi "); hindi=sc.nextInt(); System.out.println("enter the marks of english "); english=sc.nextInt(); System.out.println(" enter the marks of physics ");; physics=sc.nextInt(); System.out.println(" enter the marks of chemistry "); chemistry=sc.nextInt(); System.out.println("enter the marks of maths "); maths=sc.nextInt(); ...

Program of Making a simple calculator using java swing

import javax.swing.*; import java.awt.event.*; class Calc implements ActionListener {     JFrame f;     JTextField t;     JButton b1,b2,b3,b4,b5,b6,b7,b8,b9,b0,bdiv,bmul,bsub,badd,bdec,beq,bdel,bclr;     static double a=0,b=0,result=0;     static int operator=0;     Calc()     {         f=new JFrame("Calculator");         t=new JTextField();         b1=new JButton("1");         b2=new JButton("2");         b3=new JButton("3");         b4=new JButton("4");         b5=new JButton("5");         b6=new JButton("6");         b7=new JButton("7");         b8=new JButton("8");         b9=new JButton("9");         b0=new JButton("0");         b...

C Program to find next larger number from a given array from target number

  Here is Program:   #include<stdio.h> #include<stdlib.h>   void sort(int arr[] ,int n)  {   int i,j,temp;   for (i = 0 ; i < ( n - 1 ); i++)   {     for (j = i+1 ; j <( n - 1); j++)     {       if (arr[i] > arr[j])       {         temp  = arr[i];         arr[i]   = arr[j];         arr[j] = temp;       }      }    }   }   int main()   {     int a[] = {2,11,11,6,80};     int i, num1 = 8;     sort(a,5);         for(i=0;i<sizeof(a)/sizeof(a[i]);i++)     {         if(a[4]<num1)          {   ...