0
How to create a official website using coding
I have learnt html and js but I am not getting how to work js commands on html tags and get results
4 Answers
0
learn bootstrap and try any one of this
1) bootstrap studio framework
2) pinegrow framework
GUI helps you to reduce web design complexity
0
Maybe this can help you a little bit to understand how JS can work HTML.
And also look again to the 'DOM' course in JS.
https://code.sololearn.com/WC38N0WANk6P/?ref=app
0
You need to learn css to style up your website (without it, you only see white back with black text).
Js is used mostly to handle some specifical events ( user presskey/ or click button) so it won't help you much in styling your website.
0
In order to execute a javascript code in your html file you need to 'import' it.
This is done in the head tag of your document :
<script src='mycode.js' type='text/javascript' />
you can also do this to not import any file
<script>
// your code here
</script>