Heading

Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Wednesday, March 5, 2014

Web Application in java

Hi Friends

If any one interested to build simple web application in java then go through the posts from

Web Application in Java with JDBC, Servlets, JSp and MYSQL DataBase-1

to

Web Application in Java with JDBC, Servlets, JSp and MYSQL DataBase-14

Then you will idea how to make a simple Web Application.

Hope these articles helps you to improve yourself.

Web Application in Java with JDBC, Servlets, JSp and MYSQL DataBase-13

CSS File:

/*
    Document   : First
    Created on : Feb 25, 2014, 3:48:30 PM
    Author     : SDSTAFF
    Description:
        Purpose of the stylesheet follows.
*/

root {
    display: block;
}

            a:link {color:#cc00ff;text-decoration:none;}
            a:hover{color: blue;background-color: azure;}
            a:visited{color: palegoldenrod;}
            body
            {
                background: grey;
                padding-left:5%;
                width: 80%;
            }
            div
            {
                background-color: snow;
            }
            #heading
            {
                margin-left: 10%;
                text-align: center;
                font-size: 20px;
            }          
            #heading1
            {
                margin-left: 10%;

            }
            table,input
            {
                margin-left: 25%;
            }
            #site
            {
                margin-left: 10%;
                text-align: center;
                font-family: cursive;
                font-size: xx-large;
                background: ghostwhite;
            }
            #site1
            {
                margin-left: 10%;
                text-align: center;
                font-family: cursive;
                font-size: larger;
                background: ghostwhite;
                margin-bottom: 5%;
              
            }


Wednesday, September 25, 2013

Adding Image to Text Box

<html>
<head>
<style type="text/css">
        .tbl1
        {
            background: #FFFFFF url(button.gif) no-repeat 4px 4px ;
            padding: 4px 4px 4px 22px;
            height: 25px;
            background-position:right;
        }
    </style>
</head>
<body>
 <div>
        <input type="text" class="tbl1"/>
 
 </div>
</body>
<html>

Output: