Wednesday, 28 February 2018

Form Designing with Div tag using single image with repeat tag in HTML

DivCSS.html
<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-image: url("Tulips.jpg");
    background-repeat: repeat-x;
}
</style>
</head>
<body>
<h1>Hello World!</h1>
<p>Here, a backgound image is repeated only horizontally!</p>
</body>
</html>
https://www.youtube.com/channel/UCKLRUr6U5OFeu7FLOpQ-FSw/videos

0 comments

Post a Comment