Answers for "how to display variables in html"

5

html use js variable as text

<h1>"My number: " <span id="myText"></span></h1>

<script>

	//You can use an IIFE (Immediately Invoked Function Expression)
	(() => {
  		var number = "123";
		document.getElementById("myText").innerHTML = number;
	})();
</script>
Posted by: Guest on September-29-2020
10

variables in html

<var>This text will be italicized</var>
Posted by: Guest on May-21-2020
3

how to use variables in HTML

<!DOCTYPE html>
<html>
   <head>
      <title>HTML var Tag</title>
   </head>
   <body>
      <p>The equations: <var>2x</var> - <var>4z</var> = <var>2y</var> + 3 and
         <var>x</var> + <var>5z</var> = <var>3y</var> + 6</p>
   </body>
</html>
Posted by: Guest on April-03-2021

Code answers related to "how to display variables in html"

Browse Popular Code Answers by Language