• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Getting HTML

Theiananator

Senior member
Say I see a picture online and i want to add it to my website, how do i get the HTML of that picture which I would in turn post on my site?
 
Pictures don't have HTML. You need to save that picture to your server and USE html to make it show up:

<img src="image.png">
 
As a side note I wouldnt try to link directly to the image on their server.

People usually dont like that.
 
yes. save it locally, then upload it to your site, then do what keelysam said.

this is basic HTML. you'd probably benefit from some online HTML beginner tutorials.
 
Back
Top