Switch to full style
HTML code examples
Post a reply

displaying alert box in html

Fri Dec 16, 2011 8:58 pm

Displaying a notification message with dashed border and a darkslateblue as border color value.

Code:
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
    <head>
        <title>using of darkslateblue as color </title>
<
style type='text/css'>
div.info {
    font: 20px tohoma;
    color: darkslateblue;
    border: 10px dashed darkslateblue;
    margin: 5px;
    padding: 5px;
    text-align: center;
}
</
style>


    </head>
    <body>
    <div class="info" >
        <p>
             This is an alert : the system will be off during the weekend for maintaince 
        
</p>
    </div>
    
    
</body>
</
html>
 




Post a reply
  Related Posts  to : displaying alert box in html
 Get job’s Alert In Your Inbox     -  
 Popup message using JavaScript without using alert function     -  
 Displaying Images using servlets     -  
 Displaying Images in a Gallery     -  
 displaying double quotes in ASP     -  
 Displaying images from database instead of the url from data     -  
 PHP forum- images displaying as codes     -  
 ASP.NET code for filling and displaying a DataGrid     -  
 images,videos and signatures displaying as codes     -  
 calling method to form- displaying textbox data in messagbox     -  

Topic Tags

HTML Div