text
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="testexcs.css">
<style>
div{
color: red;
/*direction: rtl;*/
text-align: center;
letter-spacing: 0.1mm;
word-spacing: 0.5mm;
text-indent: 0.5mm;
text-decoration: underline blue dotted;
text-transform: capitalize;
white-space: pre-line;
}
h1{
color: red;
text-shadow: 4px 4px 8px ;
}
</style>
</head>
<body>
<h1>Compputer</h1>
<div>
This chapter teaches you
how to set backgrounds <br> of various HTML elements.
You can set the following <br> background properties of
an element: The background-color property is used to set the background color of an element. The background-image property is used to set the background image of an element. The background-repeat property is used to control the repetition of an image in the background. The background-position property is used to control the position of an image in the background. The background-attachment property is used to control the scrolling of an image in the background. The background property is used as a shorthand to specify a number of other background properties
<img src="img/img22.png" width="100">
</div>
</body>
</html>
Comments
Post a Comment