Cougary 0 Posted February 26 Report Share Posted February 26 How to seperate two pictures that are in same row in Notepad++? I don't want them to be merged like this. Our teacher is really bad at explaining things and expect from us to make a website using HTML with minimal knowledge, so asking her isn't one of options... Here is picture of "code" and how it looks when you enter website. Quote Link to post Share on other sites
dsonesuk 929 Posted February 27 Report Share Posted February 27 margins, white border. Quote Link to post Share on other sites
Sherin 2 Posted March 11 Report Share Posted March 11 If you want to separate two pictures in same row the Margin Property allow you to give space between two picture . Here is the code <html> <head> <title>IMAGE</title> </head> <body> <img src="/image/Screenshot_2.png" alt="old car" style="margin: 10px;width: auto;height:300;" > <img src="/image/Screenshot_1.png" alt="car1" style="margin: 10px;width: auto;height:300;" > </body> </html> I hope this will helps you. 1 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.