I have a problem with reset and submit buttons. the buttons appear in page but when I click on it deosnt work. what is the reason !!!
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta descrption="This Is Description For My First Page">
<title> Assigemnt 7 </title>
<script> </script>
<link rel="stylesheet" type="text/css" href="" > <link>
</head>
<body>
<from action="" target="_blank" method="get" >
<label for="search">search</label> <br>
<input type="search" name="search" id="search" autofocus placeholder="enter a search word">
<hr>
<label for="url">Url</label> <br>
<input type="url" required>
<hr>
<label for="file">Upload</label> <br>
<input type="file" id="file" >
<br><br>
<input type="reset" value="Reset">
<input type="submit" value="Save">
</from>
</body>
</html>
>Solution :
your form tag’s spellings are wrong(typo). It should be <form></form> not <from></from>