PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> img { float: right; } </style> </head> <body> <h1>float property example</h1> <p>In this example, the image will float to the right in the text, and the text in the paragraph will wrap around the image.</p> <p><img src="/pic.jpg" alt="nature" style="width:200px;height:300px;margin-left:15px;"> Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> </body> </html>