Cougary Posted February 26, 2021 Share Posted February 26, 2021 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. Link to comment Share on other sites More sharing options...
dsonesuk Posted February 27, 2021 Share Posted February 27, 2021 margins, white border. Link to comment Share on other sites More sharing options...
Sherin Posted March 11, 2021 Share Posted March 11, 2021 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 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now