[Solved] Where to add the mentioned ones(HTML CSS)? [closed]


You have:

<style 
label:hover { font-size:40px }
input:hover { font-size:40px }
></style>

You wanted:

<style>
    label:hover { font-size: 40px; }
    input:hover { font-size: 40px; }
</style>

You also want to check the console for a “404 not found” error. I am a little suspicious of the path you have to the required javascript file. First off, “assignment part3.js” is document relative, meaning we would expect to find it in the current folder. That might not be unexpected for an assignment, However the space in the file name seems potentially wrong.

You have an element with the expected id:

<img src="https://stackoverflow.com/questions/38285862/image005" width="10px" height="10px" id="preview">

so that part seems good. The default image source of “https://stackoverflow.com/questions/38285862/image005” seems to me to want an extension, did you mean for example “image005.png”?

1

solved Where to add the mentioned ones(HTML CSS)? [closed]