Jumat, 27 Maret 2015

the id selector

Hello World!
This paragraph is not affected by the style.

<html>
<head>
<style>
#para1 {
    text-align: center;
    color: red;
}
</style>
</head>
<body>

<p id="para1">Hello World!</p>
<p>This paragraph is not affected by the style.</p>

</body>
</html>

the element selector

Every paragraph will be affected by the style.
Me too!
And me!