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"/>
5 Answers
+ 9
Juan tell you well also put <p align="center"> to align text to center or in css p {text-align:center;}
+ 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>
+ 3
[Tutorial] Upload content from your device to CodePlayground - The Dropbox way
https://code.sololearn.com/WW6t4B73kJVz/?ref=app
+ 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">
+ 2
Well, as Gordon says, just follow tutorial.