Click here to Skip to main content
15,907,328 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
please give me with an example
Posted

1 solution

here's one simple example to use css in aspx page:

<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4de;
}
</style>
</head>

<body>

<h1>My CSS web page!</h1>
<p>Hello world! This is a W3Schools.com example.</p>

</body>
</html>


for more samples and examples please see this link
<a href="http://www.w3schools.com/css/css_examples.asp">http://www.w3schools.com/css/css_examples.asp</a>[<a href="http://www.w3schools.com/css/css_examples.asp" target="_blank" title="New Window">^</a>]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900