+ 3
How to write in the html page
I want to do something like when you run the web code, you can write IN the web page
3 Answers
+ 1
Oooh you want to make an input field where you can for example write your name or search something. That has to be done like this:
<!DOCTYPEhtml>
<html>
<head>
</head>
<body>
<form method="post">
Write your text<input type="text" name="textblock" id="textblock" />
</form>
</body>
</html>
I also made a code so you can try a little bit with it
(i gave it the id (you can change it ti class) textblock)
https://code.sololearn.com/WRqJ0Y4hHzz1/?ref=app
+ 3
Thank you! :D
+ 1
np