review0506
<!DOCTYPE html><html lang="en" manifest="cache.manifest"> <!-- manifest定义页面离线应用文件 --><head> <meta charset="UTF-8"> <title>review0506</title> <script type="text/javascript"> document.write("hello 128 script内部文字"); </script> <script type="text/javascript" src="script.js"></script> <!-- 1、defer:规定当前页面已完成加载后,才会执行的脚本 --> <!-- 2、async:规定一旦脚本可用,则会异步执行 --> <script type="text/javascript" src="alert.js"></script> <script type="text/javascript" src="defer.js"></script></head><body> <p>body内的文字</p> <hr> <!-- 电子邮件input类型 --> <input type="email" name=""> <hr> <!-- 统一资源定位符 --> <input type="url" name="url"> <hr> <!-- 电话号码 --> <input type="tel" name="tel"> <hr> <!-- 数字number类型 --> <input type="number" name=""> <hr> <!-- 年月日 --> <input type="date" name="date"> <hr> <!-- 年月 --> <input type="month" name="month"> <hr> <!-- 年周 --> <input type="week" name="week"> <hr> <!-- 时间 --> <input type="time" name=""> <hr> <!-- 年月日时分 utc时间 --> <input type="datetime" name=""> <hr> <!-- range input --> <input type="range" name="range" min="1" max="10"> <hr> <!-- search input --> <input type="search" name="search"> <hr> <!-- color input --> <input type="color" name=""> <hr> <!-- autocomplete 属性 --> <!-- Form或者input域自动完成的功能 --> <!-- autofocus属性 -- 用户友好体验 --> <!-- 规定在页面加载时候,域自动获得焦点 --> <!-- placeholder属性提供一种提示(hint) --> <!-- required属性 --> <!-- 规定必须在提交之前填写输入项(校验不能为空) --> <form action="success.html" autocomplete="on"> <input type="text" name="text" autofocus="autofocus" placeholder="请输入text 可以为空"> <input type="email" name="email" autocomplete="off" multiple="multiple" placeholder="请输入email 不能为空" required="required"> <input type="submit" value="提交" name=""><br> <input type="file" multiple="multiple" name=""> </form> <hr> <a href="success.html" target="_blank">success</a> <hr> <ol start="5" reversed="reversed"> <li>html</li> <li>html5</li> <li>css</li> <li>css3</li> <li>JavaScript</li> </ol></body></html>