Skip to main content

HTML CSS-Week 4

4.Write an HTML page that contains a selection box with a list of 5 countries. When the user selects a country, its capital should be printed next to the list. Add CSS to customize the properties of the font of the capital (color, bold and font size).

<html>
          <head>
          <title>WT Lab Experiment-4</title>
          <style>
          #cc {
          color: red;
          font: 20px verdana;
          font-weight: bold;
          }
</style>
<script>
function getCapital()
{
          var x;
          x = parseInt(document.getElementById("c").value);
          switch(x)
          {
          case 1: document.getElementById("cc").value = "New Delhi"; break;
          case 2: document.getElementById("cc").value = "Mascow"; break;
          case 3: document.getElementById("cc").value = "Nairobi"; break;
          case 4: document.getElementById("cc").value = "Beizing"; break;
     case 5: document.getElementById("cc").value = "Koulalumpur";
                 break;
          }
}
</script>
          </head>
          <body>
          <form name="f1" method="get">
<b><br><br>
          Select Country : <select id="c" name="c" onChange=getCapital()>
                 <option>- Select Country -</option>
                 <option value="1">India</option>
                 <option value="2">Rassia</option>
                 <option value="3">Kenya</option>
                 <option value="4">China</option>
                 <option value="5">Singapur</option>
                 </select><br><br><br><br>
&nbsp;&nbsp;&nbsp;&nbsp;Capital City : <input type="label" id="cc" name="cc" width="30"/>
</b>
</form>
</body>

</html>

output


HTML CSS-Week 4




For more info regarding technology and pro stuff...visit http://peoplezmind.com/

Comments

Popular posts from this blog

Bit Stuffing Program

#include<stdio.h> main() { int i,j,k,n,count=0; int a[30],b[30]; printf("The flag is 01111110"); printf("\n Enter the message size:"); scanf("%d",&n); printf("\n Enter the message in bits(0/1):"); for(i=0;i<n;i++) { scanf("%d",&a[i]); } printf("\n The message is:"); for(i=0;i<n;i++) { printf("%d",a[i]); } printf("\n"); for(i=0,j=0;i<n;i++,j++) { if(a[i]==1) { if(count==5) { b[j]=0; j++; count=0; } else count++; b[j]=a[i]; } k=j; printf("\n The coded message is:"); printf("01111110 /t"); for(j=0;j<k;j++) { printf("%d",b[j]); } printf("\01111110\n"); count=0; printf("The encoded message is :\n"); printf("\n 01111110 \t"); for(i=0;i<k;i++) { if(b[i]==1 && count<5) { printf("%d",b[i]...

CPU Schedueling programs

        Fcfs program         #include<stdio.h> #include<conio.h> main() { int bt[20], wt[20], tat[20], i, n; float wtavg, tatavg; printf("\nEnter the number of processes -- "); scanf("%d", &n); for(i=0;i<n;i++) { printf("\nEnter Burst Time for Process %d -- ", i); scanf("%d", &bt[i]); } wt[0] = wtavg = 0; tat[0] = tatavg = bt[0]; for(i=1;i<n;i++) { wt[i] = wt[i-1] +bt[i-1]; tat[i] = tat[i-1] +bt[i]; wtavg = wtavg + wt[i]; tatavg = tatavg + tat[i]; } printf("\t PROCESS \tBURST TIME \t WAITING TIME\t TURNAROUND TIME\n"); for(i=0;i<n;i++) printf("\n\t P%d \t\t %d \t\t %d \t\t %d", i, bt[i], wt[i], tat[i]); printf("\nAverage Waiting Time -- %f", wtavg/n); printf("\nAverage Turnaround Time -- %f", tatavg/n); getch(); } Output SJF program #include<stdio.h> #include<conio.h> main() { int p[20], bt[20], wt[20],...