how to write any text on image .. in html | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how to write any text on image .. in html

19th Dec 2018, 12:12 PM
Ch Wasiq
Ch Wasiq - avatar
7 Answers
+ 4
Maybe you can insert the image as a background in the container div?
19th Dec 2018, 1:37 PM
marjel101
marjel101 - avatar
+ 11
This May Help (just using img tag): https://code.sololearn.com/WNj8A3qalNt0
19th Dec 2018, 12:34 PM
Nova
Nova - avatar
+ 6
top: 50%; left: 50%; transform: translate(-50%, -50%);
19th Dec 2018, 12:52 PM
GiveAway
GiveAway - avatar
+ 6
This is the main things so the position is in the center on the images
19th Dec 2018, 12:52 PM
GiveAway
GiveAway - avatar
+ 5
What do you mean by that? In Canvas or img?
19th Dec 2018, 12:22 PM
GiveAway
GiveAway - avatar
+ 1
this is not working... <!DOCTYPE html> <html> <head> <title>Page Title</title> <style> .container { position: relative; text-align: center; color: white; } .text { position: absolute; font-family : "serif"; font-size : 50px; } </style> </head> <body> <div class="container"> <img src="https://cdnb.artstation.com/p/assets/images/images/005/772/115/large/karthik-jayan-highresscreenshot00000.jpg?1493666317" width="350x" height="150px"/></div> <div class="text"><h1> HTML~CSS</h1> </div> </body> </html>
19th Dec 2018, 12:49 PM
Ch Wasiq
Ch Wasiq - avatar
0
over image
19th Dec 2018, 12:38 PM
Ch Wasiq
Ch Wasiq - avatar