0

Please help fix this code!

I can not figure out why this picture will not display! <html> <p><center><strong>"Glory to the CTVA!"</strong></p> <title> We are the CTVA </title> <img src="CTVA.png"/>

18th Mar 2019, 9:36 PM
Collin
5 Answers
+ 9
Juan tell you well also put <p align="center"> to align text to center or in css p {text-align:center;}
18th Mar 2019, 11:25 PM
PanicS
PanicS - avatar
+ 3
You didn't follow the HTML syntax. The correct syntax for that is: <html> <head> <title> your title </title> <body> <p> text </p> <img src="sourceImage.png"> </body> </html>
18th Mar 2019, 10:17 PM
Juan David Padilla Diaz
Juan David Padilla Diaz - avatar
+ 3
[Tutorial] Upload content from your device to CodePlayground - The Dropbox way https://code.sololearn.com/WW6t4B73kJVz/?ref=app
19th Mar 2019, 12:47 AM
Gordon
Gordon - avatar
+ 2
Collin Please use a fully URL to image. For example: If your imega at address https:\\www.someaddess.com\CTVA.png you must use following syntax: <img src="https:\\www.someaddress.com\CTVA.png">
18th Mar 2019, 11:57 PM
Aleksandar Nedeljkovic
Aleksandar Nedeljkovic - avatar
+ 2
Well, as Gordon says, just follow tutorial.
19th Mar 2019, 1:15 AM
Aleksandar Nedeljkovic
Aleksandar Nedeljkovic - avatar