Learn HTML

Don Von Alpha Dom
by Don Von Alpha Dom · 49 posts
15 years ago in HTML & CSS
Posted 13 years ago
I really like it . I need these kind of stuff.
You doing a nice work.
Posted 13 years ago
I'm going to be a pro at HTML :mrgreen:
Posted 13 years ago
Thank you once again for such helpful information. I can't wait to work on this stuff in my free time and see what I can make of it.
Posted 12 years ago
In the part about tables the guy puts an image in one of the cells but when I try to do it I can't get it to work. I believe the only way I can get an image in there is to have the URL I do not get how he is using one from his computer...help me please?
Posted 12 years ago
Sheldor wrote:
In the part about tables the guy puts an image in one of the cells but when I try to do it I can't get it to work. I believe the only way I can get an image in there is to have the URL I do not get how he is using one from his computer...help me please?



If the image is in the same folder as the html file then you just need to type in the image name and extension:
Code
<img src="image.png" />


If the image is in another folder located in the same folder as the html file then you do this:
Code
<img src="./img/image.png" />


If the image is located in a parent directory to the directory of the html file then you do this:
Code
<img src="../img/image.png" />
Basically, it's a dot for every parent directory.

If the image is somewhere else then you do this:
Code
<img src="file:\\C:\Users\User\Pictures\image.png" />
Posted 12 years ago
Thank you so much! :)
Posted 11 years ago
Thanks for videos.
Posted 3 months ago
Nice tutorial, will check it out

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT