<doctype html> <html> <head> <meta charset="utf-8"> <title>study</title> <style> </style> </head> <body> <!-- cols="50" rows="10" 文本域 --> <p>反馈: <textarea name="textarea" cols="50" rows="10"></textarea> </p> <!-- input type="file" name="files" 文件域 --> <p> <input type="file" name="files"> <input type="button" value="上传" name="up"> </p> <p>邮箱: <input type="email" name="email"> </p> <p>url: <input type="url" name="url"> </p> <p>数字: <input type="number" max="100" min="0" step="10"> </p> <p>滑块: <input type="range" max="100"> </p> <p>搜索框: <input type="search" name="ss"> </p> <P> <input type="submit"> <input type="reset"> </P> </form> </body> </html>
标签:文件,滑块,url,study,邮箱,文本 From: https://www.cnblogs.com/xiaoxiaodeyan/p/17197393.html