Skip to main content

WEBTECH COLLEGE PRACTICAL ASSIGNMENT FOR CA & IT STUDENT

                                             WEB TECH ASSIGNMENT NO-1


1)DESIGN A FONT-ATTIBUTE AND BACKGROUND ATTRIBUTE
  THE PAGE SHOULD CONTAIN HADER TAG H1,H2 AND A
  PARAGRAPH



<html>
  <head>

    <title></title>
   
 
  </head>
  <body>
<h1 style="color:red; text-decoration:underline; font-style:italic; font-weight:300; background-color:yellow">
this is the first webtech practicle class

</h1>


<h2 style="color:blue; text-decoration:overline; font-style:oblique; font-size:larger; text-align:right; background-color:red;">
hello friends iam manish
</h2>
<p> we live in <p>india
  </body>
</html>



2) DESIGN A PAGE USING TEXT -ATTRIBUTE THE PAGE
   SHOULD CONTAIN TWO HEADER TAGST & ONE PARAGRAPH
   TAG



<html>
  <head>
 
    <title></title>
   
 
  </head>
  <body>
<h1 style="text-decoration:underline; text-transform:uppercase; text-align:center; text-emphasis:dot;">
we are part3 student of karim city college

</h1>

<h2 style="text-decoration:line-through; text-align:right;">
hello india we love india
</h2>
  </body>
</html>


3) DESIGN A PAGE TO ILLUSTRAT THE USE OF BORDER
   ATTRIBUTE



<html >
  <head>
 
    <title></title>
   
   </head>
  <body>
<h1 style="border-style:dashed; border-color:red ; border-right-width:thick; border-top-style:outset;">
this is the use of border attribut</br>
</h1>
<h2 style="border-style:inset; border-top-width:medium; border-bottom-width:thick; border-bottom-color:blue; border-top-color:green">
my name is manish if you have any doubt ask me or call me 9576253532
</h2>
  </body>
</html>

4) DESIGN A PAGE TO ILLUSTRATE THE  USE OF MARGIN
   ATTRIBUTE

<html>
  <head>

    <title></title>
   
 </head>
  <body>
<h1 style="margin-top:100px";> use of margin</h1>
  </body>
</html>

5) DESIGN A PAGE CONTAIN TWO PARAGRAPH & SHOWING THE
   VARIOUS LIST OF ATTRIBUTE


<html>
  <head>
    <title></title>
  </head>
  <body>
<p>
following religion lives in india
<ul>
<li>hindu
</li>
<li>
muslim
</li>
<li>
sikh
</li>
<li>
christain
</li>
<ul>
</ul>
</ul>
</p>
<p>
hindu is sub divided into
<ul style="square">
<li>
pandit
</li>
<li>
rajput
</li>
<li>
brahman
</li>
</ul>
</p>
  </body>
</html>

6) DISIGN A PAGE TO ISSLUSTRATE THE USE OF CLASS
   SPAN WITH PARAGRAPH


<html>
  <head>
      <title></title>
  </head>
   <body>
   <style>
   .a{color:green ; font-size:large;}
   .b{color:red ; font-style:italic; }
   </style>
   <p class="a"> Guru,Subashish,Satty,Kamil,Eashita,Bushra,Hena, <span class="b">Manish</span> are student of karim city college</p>
   </body>
</html>




                                        WEB TECH ASSIGNMENT N0-2


Q1> DISPLAY MAXIMUM AND MININMUM NO FROM 5 NO


<html>
<head>

<title></title>
<script language="javascript">
var i;
var max=0;
a=new Array(5);
b=new Array(5);
for(i=0;i<5;i++)
   {
   a[i]=prompt("enter the five value");
   b[i]=parseInt(a[i]);
   }
for(i=0;i<5;i++)
    {
    if(b[i]>max)
    max=b[i];
    }
document.write("max is ="+max);
for(i=0;i<5;i++)
   {
    if(max>b[i])
    max=b[i];
   }
document.write("min is ="+max);
</script>
</head>

<body>

</body>

</html>


Q2> DISPLAY ALL EVEN NO BETWEEN TWO NO WHICH
    ARE TAKEN THROUGH PROMPT BOX



<html>
<head>
<title>man</title>
</script>
</head>
<body>
<script language="javascript">
var i,a,b,z,y;
var j=0;
var sum=0;
a=new Array(5);
b=new Array(5);
z=prompt("enter the first range");
y=prompt("enter the last range");
document.write("even no betwwen  "+z+"and  "+y+"  are  ");
for(i=z;i<=y;i++)
  {
   b[j]=i;
   a[j]=parseInt(b[j]);
   if(a[j]%2==0)
   document.write("  "+a[j]);
   j++;
  }
</script>
</body>
</html>


Q3> DISPLAY REVERSE OF A GIVEN NO WITH THE HELP
    OF GIVEN NO



<html>
<head>
<title>man</title>
</script>
</head>
<body>
<script language="javascript">
var rev=0,a;
a=prompt("enter the first range");
document.write("reverse of no are");
while(a>0)
 {
  d=a%10;
  rev=rev*10+d;
  a=parseInt(a/10);
 }
document.write(rev);
</script>
</body>
</html>


Q4> DISPLAY GOODMORNING,GOOD EVINING,GOOD AFTERNOON
    GOOD NIGHT ACCORDING TO CURRENT TIME



<html>
<head>
<title>man</title>
</script>
</head>
<body>
<script language="javascript">
var h=new Date();
if(h.getHours()>1 && h.getHours()<12)
document.write("good morning");
else if(h.getHours()>18 && h.getHours()<21)
document.write("good evining");
if(h.getHours()>21)
document.write("good night");
if(h.getHours()>12 && h.getHours()<18)
document.write("good afternoon");
</script>
</body>
</html>


Q5> DISPLAY DAY NAME OF YHE CURRENT DAY


<html>
<head>
<title>man</title>
</script>
</head>
<body>
<script language="javascript">
var h=new Date();
if(h.getDay()==1)
document.write("today is monday");

else if(h.getDay()==2)
document.write("today is tuesday");

else if(h.getDay()==3)
document.write("today is wednesday");

else if(h.getDay()==4)
document.write("today is thursday");

else if(h.getDay()==5)
document.write("today is friday");

else if(h.getDay()==6)
document.write("today is satueday");

else
document.write("today is sunday");
</script>
</body>
</html>


IF YOU HAVE ANY QUERY REGARDING OUTPUT CONTACT ME
THANK YOU



Comments

Popular posts from this blog

11-awesome-diwali-lighting-decoration-ideas

Beautiful Flower Lights On Water Diwali Decoration Ideas Picture Beautiful Hanging Lighting Lanterns Diwali Decoration Beautiful Lighting Decoration For Diwali Beautiful Lighting Lamps Decoration Cool Diwali Lighting Decoration Ideas Diwali Lighting Decoration Picture Diwali Lighting Decoration Ideas Elegant Hanging Lighting Lamp Decoration Glass Bottles Hanging Lighting Lamps Diwali Decoration Hanging Beautiful Lighting Kandil Diwali Decoration Photo Shubh Labh Lighting Decoration For Diwali

9 Tools That Help Us Drive Higher Quality Traffic

When it comes to selling products & services online – the QUALITY of your traffic is much more important than the quantity. In today’s blog post I will share with you my favorite tools for driving high quality traffic and a lot of it! When we’re talking about the “quality” of your traffic, we’re talking about: Buyers intent – are these buyers? Demographic match – is this traffic your actual target audience? Cost effectiveness – can this traffic reach my CPA (cost per action) goals? Web Traffic Tools You Should Be Using! 1. Google Analytics First and foremost, Google analytics is absolutely crucial in driving quality traffic. The ultimate mistake in driving traffic is not tracking your results. Google Analytics allows you to track conversions (goals), tells you which traffic sources are converting the best, and lets you segment your data so that you can go out and find more high quality traffic. As far as I am concerned, it is the most essential tool in internet mark

100+ Sweet Things to Say to Your Girlfriend

Sweet Things to Say to Your Girlfriend : You know what is the basic reason of splitting up of many couples? It does not happen because they do not love each other enough now, but it happens because they forget to show their love to each other. In a relationship, mostly girls demand some attention and affection from their partners. And all you guys can give it to them with the help of sweet things to say to your girlfriend. Don’t let your ego ever comes between you two. Love has more power than any other thing in the world. Use this power to overcome all the problems in your relationship. These sweet things to say to your girlfriend are nothing when you are not feeling them. These are not just the lines but the feelings you hold in your heart for her but could not display all this while. 100+ Sweet Things to Say to Your Girlfriend To help you more on this, I have compiled a list comprising of more than 100 sweet things to say to your girlfriend. These are simple and yet clas