I'm a beginner in web programing ... and I'm trying to find a solution to validate my webpage in XHTML 1.0 strict
Anyway I got stuck at the following line :
<form name="calculator" method="post" action="calculator.php">
XHTML 1.0 Strict doesn't accept <form name> and I don't know how to convert in something that could work.
I know that are solution with javascript, but really I don't have a clue.
It's saying that if you want to comply with xhtml 1.0 strict, you shouldn't use name="calculator" anymore, you should use id="calculator" instead. Just change the code for the <form> statement, and that'll probably clear it up.
Bookmarks