Confused HTML beginner here - html

so I've recently started learning web development and I read and write html according to a tutorial that uses html 4, and just practice it on notepad++ and test them on my browser.
Now there's a problem that's been bugging, the web page doesn't change at all even if I comment out the code or change a few things in it.
I messed around with the height and width of an image and it didn't change, I tried creating a folder outside the notepad++ folder and put everything there and nothing changed, I created a completely new file(added in notepad++) and folder and it was the same. I'm still in the middle of the tutorial and this problem has just been bothering me, someone please help

I think you should try clearing browser cache or try using other IDEs like vscode or if you use android then trebedit or Dcoder

Try refreshing your page, or use an IDE like Visual Studio Code and the live Server plugin. This should help you as a beginner because both of these tools are really easy to use. Maybe it isn't changing because you had never saved your file.

Related

VS won't color my code, intellisense won't work, and go to definition and other functions won't work

I can't provide any code because I'm under NDA, but as the title says, VS won't color my code or let me use any of the built-in tools it has. It allows me to rebuild and such, just not anything that directly edits or reveals any files. Google has absolutely nothing about the problem, everything is always VS Code. It's only for one specific project and it makes it very hard to work, does anyone know a solution? Has anyone ever heard of this problem?
It's Visual Studio 2022.
Edit:
The code is in TypeScript, with the .ts file extension, if that wasn't obvious, not to mention that it doesn't even interact with plain HTML. The only time it even colors the text is when I restart VS, then it goes back to not interacting with the text at all until I restart again, then it only highlights 2 of the files and stops again. This is the most information I could possibly give from my perspective, ask for any more you need.
I can usually fix this by simply closing VS and then reopening it. It's definitely a glitch in Visual Studio with both Typescript and Javascript files. If closing/reopening gets too annoying, there's some other things to try on this post:
Visual Studio 2022 - for typescript files Intellisense not working

how to reset vscode to default setting and configurations

Hello guys so I am new to web programming currently learning HTML and CSS and I am using VSCode but my problem is ( i am a newbie) when I try to run the HTML and CSS code I get this file launch.json and it doesn't show me the page I am working on how to fix this I uninstalled and installed but still the same issue I think I messed up with the configuration this is when I run
this how it looks
I think the easiest way, for this moment is to install the liveserver plugin to your VSCode editor, Here you have link to many tutorials how to do this and much more..;-) and then do a decent review of the conventions and rules of web development Good Luck, and Keep calm and do not stop coding !

Tab completion is not working in visual code studio

im new in this programming world.
And i wanna asking a noobie question.
Im using visual code studio and trying make my first web project, so i install some extension so i can easily code(?). But when i using tab-completion its not really work. In my case, i use html and the tab-completion didnt really work like when u tab-ing or enter-ing its not complete all the code, for example i wanna type div, so i type <di then tab/enter and its just showing <div only, not <div> </div> . And can anyone tell me how to fix that? Your answer really mean everything to me. Thankyou!
Oh! And here's my setting and a bunch of extension i use. Whether i should disabble or installing other
My setting
Extension i use
Another extension i use
p.s. im sorry the picture not shown, i need to have 10 question so i can attach an actual image
You are probably looking for the Auto Complete Tag and Auto Close Tag extensions:
Auto Close Tag for VS Code
Auto Complete Tag for VS Code
You can find additional Extensions like this by searching for the AutoComplete tag:
Search VS Code marketplace for AutoComplete

Webpage is not being rendered properly

Hi I am an android developer and haven't much knowledge about web, I purchased this App and it has a web back-end, it working pretty fine when I run it local like this,
but when I run this via hosting , I am getting this. link
After going through some search I found that these are some sort of Angular tags, as I already have mentioned that I haven't knowledge about this, How do I solve this?
It's happening due to hosting or path resolution issues.
None of the JavaScript files are getting loaded due to which the page is breaking and hence you are seeing raw code.
Fixing the proper loading of JS should fix the page. You might need to tweak it further in case relative path's are not loaded correctly.
Overall, it is not a code level issue yet.
Below is the screenshot of the hosted link you shared.

Having issues saving the changes I'm making to the CSS code of my Wordpress site

I'd like to make a disclaimer that I'm brand new to both CSS and Wordpress.
I've been using "Google Inspect" to edit the CSS of my Wordpress site. Everything looks like it is working well as I'm making the changes but the second I refresh the page it reverts it back to it's original formatting.
I am using this resource but the solution he came up with still doesn't seem to work for me.
Right now I am:
Saving my CSS
Making changes to the CSS
Saving my CSS again
Refreshing the page with no luck...
I'm not sure if there is any other information that I can provide. Let me know if there is and I'll update this post.
Any help would be greatly appreciated.
after reloading your change CSS code not working because it's either not saving to your CSS file or you may have to clear your browser data
Try viewing your page in another browser or incognito mode. This will force your browser to refrain from using any pre-cached versions.
Additionally, I would highly recommend using child themes when modifying your wordpress CSS. This will prevent your stylesheets from being overwritten when wordpress updates.
ok, maybe I'm wrong here, but it sounds to me like you are just not saving the stylesheet (which holds all the CSS of your site) correctly.
Perhaps I can summarize the technique from the other post quickly:
Open the browser element inspector and make your css edits.
Navigate to the css style sheet in the inspector and save the file
to your computer as style.css in your theme folder
Refresh the page and hope to see the changes.
This is making some assumptions I'm not sure are happening in your case:
This will only work if you are doing this in a local development
environment OR you are FTP'ing this style.css file to your server.
You aren't making any changes to currently unstyled elements. The
web inspector will add these as inline styles and they won't be in
said stylesheet.
I don't mean any disrespect by this whatsoever, but you will save yourself a ton of pain and suffering by learning how to do this right the first time.
Download:
Atom - Code editor
Desktop Server - The free version
Learn how to use those to create a local development environment and then use Atom to change your CSS.