0
what are the math sets used in html
6 Respuestas
+ 1
I didnt meant that. Actually i saw code of some guy who had made a calculator using html and css.
I think it could be javascript ?
0
I'm not quite sure what you mean.
HTML itself does not require knowledge of math necessarily.
It is a markup language which is used for establishing the structure of a web page.
That being said all you need to learn is the logic and structure of html to understand it.
A basic understanding of English should be enough to get started.
0
Oh, ok. You would be correct then. That is functionality you can add with Javascript.
You have basically two options:
1. You can add script in the html document itself. To do this between the <head></head> tags, place
<script language="javascript">
// Add some script here
</script>
or,
2. You can write Javascript in a separate document and import it with
<script src="myscript.js"></script>
0
Oh yeah i know that. So that means i need to learn javascript then
0
Exactly! You can also learn and practice JS in SoloLearn.
There's a fair amount of other places you might try as well, like:
codecademy
w3schools
stack exchange (great if you have questions)
0
Ok thanks .