Watts-College / cpp-527-fall-2021

A course shell for CPP 527 Foundations of Data Science II
https://watts-college.github.io/cpp-527-fall-2021/
2 stars 6 forks source link

Lab 05 - Pics #44

Open sandralili opened 3 years ago

sandralili commented 3 years ago

Hello Dr. @lecy,

I noticed that I could not add any image on the index.md file, it is weird, I had the same pic on the aboutme.md file, and it worked very well.

image

image

image

I wonder if I am doing something wrong.

Thanks! Update: I had to get a pic of the code, when I copied and paste the code of the images, I didn't work on this page.

lecy commented 3 years ago

I think because the page index.html serves as the home page or landing page for a site. You don't need to use this address:

https://sandralili.github.io/mygithub.io/index

You can just use:

https://sandralili.github.io/mygithub.io/

As a result, you don't need to navigate up one level to get back into the root folder, and then descend into the IMG folder:

<img src="../img/asu.png" height="300px" class="center">

Did you try this?

<img src="img/asu.png" height="300px" class="center">
sandralili commented 3 years ago

Thanks Dr. @lecy it worked!

I removed the directions to navigate up one level! img/asu.png Thank you!