Monday, December 26, 2011

A simple example using CSS, inside HTML

It's a simple example to implement CSS inside HTML.

A simple example using CSS, inside HTML

<html>
<head>
<title>CSS Test</title>
<style>
body {
margin-left: 20px;
margin-right: 20px;
background-image: url("http://goo.gl/ZTEx7");
background-repeat: no-repeat;
background-position: bottom right;
background-color: #e0e0e0 }

h1{font: bold 2em helvetica}

p { font-size: 20px; }
</style>
</head>
<body>

<h1>Mobile-Web-App</h1>
<p>Test CSS</p>

</body>
</html>

No comments:

Post a Comment