Skip to main content
4 answers
4
Asked 413 views

please can anybody help me out?

I have been learning JavaScript for the past 4months now the coding aspect, but I can't seem to figure out how to use it with my html and CSS.

Thank you comment icon Hey Ayo, I need a bit more information to help answer your question, what web application framework are you using to learn? Regards, H Haresh Siva

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

4

4 answers


0
Updated
Share a link to this answer
Share a link to this answer

Angelo’s Answer

Great start and good news that you are learning Javascript!

Below is a good resource to learn html, css and javascript..to name a few. This site will allow you to play and test what you are learning on the website.

https://www.w3schools.com/

I hope this helps. Happy coding!
0
0
Updated
Share a link to this answer
Share a link to this answer

david’s Answer

Congratulations on learning Javascript! That is a major programming language for the web. To learn more about interjecting that into HTML and CSS, I recommend two approaches:
1. use your browser search engine with searches such as "how to use HTML javascript" as that will open a number of websites with tutorials on the topic.
2. if a public library is accessible to you, see if they have books on Javascript, as most books also include HTML with samples of using the two elements together.

It was the above two techniques that I used for Javascript and other internet skills. I wish you well in your pursuits.
0
0
Updated
Share a link to this answer
Share a link to this answer

Elliot’s Answer

You need to look at examples. Get a couple good beginner books on Javascript and go slowwww through it. Also as mentioned, W3schools is a good site.
0
0
Updated
Share a link to this answer
Share a link to this answer

Peter’s Answer

1) Launch Chrome browser, enable "Developer Tools" in "More Tools." You'll see tabs like Elements, Console, and Sources.
2) Open a webpage (e.g., careervillage.com), find HTML and scripts in the Elements tab.
3) In the Sources tab, locate cdn.jsdeliver.net, and find the js/src folder containing JavaScript code.
4) CSS is in the "Styles" section, either in the <head> or <body> block of the Elements tab.

Advice:
a) Understand JavaScript by studying its implementation on webpages.
b) Explore a Node.js book to learn how it works, interacts, and loads components.
0