HTML5参考手册(英文版)
- 格式:pdf
- 大小:626.79 KB
- 文档页数:14
产品操作文档英文1. Click on the "Start" button to open the application.2. Enter your username and password in the designated fields.3. Once logged in, you will be directed to the main dashboard where you can access all the features and functions of the product.4. To create a new project, click on the "New Project" button and fill in the required details such as project name, description, and start date.5. Upload any necessary files or documents by clicking on the "Upload" button and selecting the files from your computer.6. Use the editing tools to make any changes or additions to the project, such as adding tasks, settingdeadlines, or assigning team members.7. Save your progress regularly by clicking on the "Save" button to ensure that all your work is preserved.8. To track the progress of your project, navigate to the project dashboard and view the status of each task and milestone.9. Communicate with your team members by using the messaging feature to discuss updates, ask questions, or provide feedback.10. Once the project is complete, click on the "Finish" button to close the project and archive it for future reference.。
HTML开发技术手册HTML(超文本标记语言,HyperText Markup Language)是一种用于创建网页的标准标记语言。
它描述了网页的结构和语义,并且通过标签来定义文档的样式和布局。
作为Web开发的基础,HTML的掌握对于开发人员来说至关重要。
本手册将介绍HTML开发技术的基本知识和一些常用的技巧。
一、HTML的基本结构HTML文档以`<!DOCTYPE>`声明开始,用于告诉浏览器使用哪个HTML版本解析网页。
接下来是`<html>`标签,表示HTML文档的根元素。
在`<html>`标签内,有`<head>`和`<body>`两个主要部分。
`<head>`标签用于定义文档的元信息,如标题、字符编码等;`<body>`标签则用于定义文档的内容。
二、HTML元素与标签HTML文档由一系列的标签构成,每个标签可以包含内容,也可以有属性来定义标签的特性。
常见的HTML标签有:- `<h1>`到`<h6>`:用于定义标题,数字越小,表示级别越高。
- `<p>`:用于定义段落。
- `<a>`:用于创建链接。
- `<img>`:用于插入图像。
- `<ul>`和`<ol>`:用于创建无序列表和有序列表。
- `<div>`和`<span>`:用于划分文档结构和样式控制。
三、HTML属性HTML标签可以包含属性,属性一般用来定义标签的特性或提供额外的信息。
常见的HTML属性有:- `class`:用于给元素添加一个或多个类名。
- `id`:用于定义元素的唯一标识符。
- `style`:用于定义元素的样式。
- `src`:用于指定图像、音频或视频资源的URL。
- `href`:用于指定链接的URL地址。
四、HTML表单HTML表单是用户与网页交互的重要手段,它提供了各种输入控件,如文本输入框、按钮、复选框等。
html参考文献20211. MDN(Mozilla Developer Network)是一个权威的 HTML 参考文档,提供了关于 HTML 标签、属性和事件的详细说明。
该文档包含了 HTML5 的最新规范,以及大量的示例代码和解释,使开发人员能够深入了解 HTML 的各个方面。
2. 《HTML and CSS: Design and Build Websites》是一本由 Jon Duckett 著作的畅销书,它提供了全面的 HTML 参考文档和教程。
这本书适合初学者,通过图文并茂的方式讲解了 HTML 的基本知识和常见标签的使用方法,帮助读者在短时间内掌握HTML 的核心概念。
3. 《HTML5: The Missing Manual》是 Matthew MacDonald 著作的一本专著,它涵盖了 HTML5 的所有内容,包括语义化标签、音频视频媒体、动画效果、表单验证等。
这本书不仅提供了详细的 HTML5 参考文档,还附带了实际案例和项目示例,帮助读者深入了解 HTML5 的各个特性和应用场景。
4. 《HTML and CSS: Visual QuickStart Guide》是 Elizabeth Castro 和 Bruce Hyslop 共同编写的一本实用参考书。
该书以图文并茂的方式介绍了 HTML 和 CSS 的基本知识和常见标签的使用方法。
它提供了大量的示例代码和屏幕截图,帮助读者直观地理解 HTML 的结构和样式,从而快速掌握网页设计与开发的技巧。
5. 《HTML5 Pocket Reference》是 Jennifer Niederst Robbins 的一本简明参考书,它提供了 HTML5 标签和属性的快速查阅手册。
该书以字典的形式呈现,按字母顺序排列了常见的HTML5 标签和属性,每个条目都包含了语法和说明。
这本小册子非常便携,适合开发人员在实际工作中随时查阅使用。
html5语句HTML5(Hypertext Markup Language 5)是一种用于构建和展示Web页面的标准语言。
它被广泛使用在各种设备和平台上,支持菜单、图像、视频和音频。
在这篇文章中,我们将分步骤解释HTML5语句。
1. DOCTYPE 声明DOCTYPE是在文档中声明使用哪个HTML版本的语句。
它位于HTML文件的开头,告诉浏览器要使用哪种HTML版本来解析文档。
在HTML5中,doctype声明为:<!DOCTYPE html>这是唯一的DOCTYPE声明,与之前的HTML版本不同,这个声明没有自我封闭。
2. HTML 根节点HTML根节点是文档的开始和结束标记。
所有的HTML元素都在这个标记之内。
在HTML5中,HTML根元素声明为:<html>3. HEAD 标记Head标记定义了页面的元数据和其他信息,包括标题、关键字和字符集等。
它位于HTML的开始标记和结束标记之间。
在HTML5中,head标记声明为:<head>4. TITLE 标记Title标记定义了HTML文档的标题。
它是浏览器窗口和搜索引擎结果中的主题。
在HTML5中,title标记声明为:<title>这是标题</title>5. BODY 标记Body标记是其中最重要的标记,它定义了HTML页面的内容。
它们是在HTML根标记之内,包括所有新标记的开始标记和结束标记。
在HTML5中,body标记声明为:<body>6. H1-H6 标记H1-H6标记用于定义页面中的标题。
H1是页面上最大的标题,H6是最小的标题。
在HTML5中,H1-H6标记声明为:<h1>这是一个一级标题</h1><h2>这是一个二级标题</h2><h3>这是一个三级标题</h3><h4>这是一个四级标题</h4><h5>这是一个五级标题</h5><h6>这是一个六级标题</h6>7. P 标记P标记用于定义段落,它是HTML页面上最常用的标记之一。
Sublime Text使用手册文档编号:[GUIDE-2015]00001密级:公开资料文件密级说明1.绝密:一旦泄密会使公司利益遭受特别严重的损害;2.机密:一旦泄密会使公司利益遭受严重的损害;3.秘密:一旦泄密会使公司利益遭受较大的损害;4.内部资料:一旦泄密会使公司利益遭受一般损害;5.公开资料:公开有助于公司利益。
版权(免责)声明本文档原始版权归(QQ群:JavaWeb基础群437873646)所有,并保留一切权利。
文件内容可供任何机构或个人修改使用。
其仅提供阶段性信息,所含内容可能会随时更新,恕不另行通知。
如因文档使用不当造成的直接或间接损失,(QQ群:JavaWeb基础群437873646)不承担任何责任。
文档信息版本号:2015.0.1 版本日期:2015年4月5日制作:Scott 制作日期:2015年4月5日审批:Simon 审批日期:2015年4月5日审核:审核日期:修订记录:版本号修订日期NAMD 修订人修订内容(N-新建,A-添加,M-修改,D-删除)目录1 引言 (1)1.1 编写目的 (1)1.2 术语和缩写定义 (1)1.3 参考文档 (1)2 安装与初始化配置 (1)2.1 安装Sublime Text (1)2.2 个人风格配置 (2)3 系统增强 (3)3.1 安装Package Control (3)3.2 安装Emmet插件 (3)3.3 将Sublime Text加入系统右键菜单 (8)4 项目工程 (9)4.1 新建工程 (9)4.2 保存工程 (9)4.3 切换工程 (11)4.4 版本控制 (11)5 附录 (12)5.1 常用操作快捷键 (12)5.2 常用编程快捷键 (12)1引言1.1编写目的Sublime Text 是一个轻量、简洁、高效、跨平台的编辑器,方便的配色以及兼容vim快捷键等各种优点博得了很多前端开发人员的喜爱!本文为了程序员快速地熟悉Windows系统环境下,Sublime Text的安装与配置而编写,希望能有助于提高前端开发的工作效率。
iH5基础教程:HTML5编辑器介绍一、公司介绍iH5是国际领先的HTML5制作工具和服务平台,你可以使用iH5轻松制作具有丰富动态效果的HTML5网页应用,可视化操作界面,无需编程基础。
二、网站结构1、注册登录页面填写信息注册账号或点击右上角进入登录页面。
2、ih5首页(1)作品推荐点击封面可查看作品,点击左上角可收藏此作品,点击右上角可获得作品二维码与作品链接,点击关注可关注作品的作者。
查看作品时,点击右上角可全屏观看,还可以关注作者或联系作者。
关注的设计师会出现在首页目录系统消息之下。
点击精品模板,可以按分类查看模板,点击下载按钮可下载模板,下载后将保存到您的个人主页下面,下载付费模板需充值V币,模板下载后不能另存为或再次发布成为模板。
(2)学习使用点击首页右下角学习使用按钮,可进入教学页面。
按基础篇、初级篇、中级篇、高级篇查看教学视频,也可以功能/应用详解。
(3)新建案例点击右下角新建案例或点击首页左上角帐户名进入个人页面,可以创建新的案例,进入编辑器页面。
(4)账户信息点击首页右上角帐户名可进入个人页面,查看作品,点击点击首页右上角帐户名旁边的下拉箭头可查看账户信息、充值V币和付费服务。
点击组件服务的升级按钮,可查看付费服务详情。
(5)编辑与发布逻辑作品编辑以及发布功能新增“编辑中”和“已发布”模块。
新建作品并保存后,可以在“编辑中”模块中对作品进行修改,只有在编辑页面中点击“发布”按钮后,作品才会被保存在“已发布”模块中,同时也只有发布后的作品才能获取分享链接与二维码。
值得注意的一点是,发布后的作品是无法取消发布和修改的,但“编辑中”模块里会有一个与之相对应的作品,只要对其进行修改并发布就可以更新发布后的作品啦(但如果仅仅保存,“发布后”中作品的内容的是不会被更替的)三、iH5的作用四、编辑器介绍1、菜单栏(1)舞台放缩:“放缩”用于放缩舞台的显示大小。
显示比率分别可以将舞台缩放到50%、60%、70%、80%、90%、100%、110%、120%,当舞台大于页面可现实范,围时,可以缩小舞台显示大小,查看整体效果。
html 常用术语中英文对照共100个1. HTML (HyperText Markup Language) -超文本标记语言2. DOCTYPE -文档类型声明3. Element -元素4. Tag -标签5. Attribute -属性6. Head -头部7. Body -主体8. Title -标题9. Paragraph -段落10. Heading -标题(h1 到h6)11. Anchor -锚点12. Href (Hypertext Reference) -超文本引用13. Image -图像14. Src (Source) -源15. Alt (Alternative Text) -替代文本16. List -列表17. Ordered List (ol) -有序列表18. Unordered List (ul) -无序列表19. List Item (li) -列表项20. Table -表格21. Row -行22. Column -列23. Header Cell (th) -表头单元格24. Data Cell (td) -数据单元格25. Form -表单26. Input -输入框27. Textarea -文本域28. Button -按钮29. Label -标签30. Select -下拉框31. Option -选项32. Checkbox -复选框33. Radio Button -单选按钮34. Submit -提交按钮35. Reset -重置按钮36. Fieldset -字段集37. Legend -图例38. Div (Division) -分割39. Span -范围40. Class -类41. ID -标识符42. Style -样式43. CSS (Cascading Style Sheets) -层叠样式表44. Inline Style -内联样式45. External Style Sheet -外部样式表46. Internal Style Sheet -内部样式表47. Block Level Element -块级元素48. Inline Element -行内元素49. Semantic HTML -语义化HTML50. Deprecated -弃用的51. Whitespace -空白字符52. Comment -注释53. Syntax -语法54. Responsive Design -响应式设计55. Viewport -视口56. Meta Tag -元标签57. Charset -字符集58. Viewport Meta Tag -视口元标签59. Canvas -画布60. SVG (Scalable Vector Graphics) -可缩放矢量图形61. Web Accessibility -网页可访问性62. Aria (Accessible Rich Internet Applications) -可访问丰富互联网应用63. Attribute-Value Pair -属性值对64. HTML5 - HTML 第五版65. Semantic Elements -语义元素66. Section -区块67. Header Element -头部元素68. Nav Element -导航元素69. Article Element -文章元素70. Aside Element -侧边栏元素71. Footer Element -页脚元素72. Mark Element -标记元素73. Progress Element -进度元素74. Meter Element -计量元素75. Canvas Element -画布元素76. Audio Element -音频元素77. Video Element -视频元素78. Embed Element -嵌入元素79. Iframe Element -框架元素80. Web Storage - Web 存储81. Local Storage -本地存储82. Session Storage -会话存储83. Cookie - Cookie84. Script -脚本85. Event -事件86. Event Handler -事件处理程序87. Document Object Model (DOM) -文档对象模型88. Node -节点89. Element Node -元素节点90. Attribute Node -属性节点91. Text Node -文本节点92. Parent Node -父节点93. Child Node -子节点94. Sibling Nodes -兄弟节点95. Load Event -加载事件96. Click Event -点击事件97. Mouseover Event -鼠标悬停事件98. Keydown Event -按键按下事件99. Ajax (Asynchronous JavaScript and XML) -异步JavaScript 和XML 100. API (Application Programming Interface) -应用程序编程接口。
TABLE A.1 HTML Global AttributesThe following attributes may be used with most HTML elementsGlobal Attribute Descriptionaccesskey For adding a keyboard shortcut to an elementaria-* For associating accessibility attribute values specified by WAI-ARIA class For identifying a set of elements in order to apply styles to them contenteditable For making the content of an element editablecontextmenu For identifying a contextual menu for an element (the value must be the same as a menu element’s id attribute)data-* For storing custom data that is private to the page or applicationdir For specifying the element’s text directiondraggable For making an element draggabledropzone For identifying an element as a place where draggable elements can be droppedevent For associating an element with a script (event is a placeholder for the actual event name) hidden For indicating that an element is not yet relevant or is no longer relevantid For identifying a particular element so that it can be linked to, styled, or scripted with JavaScript lang For specifying the language an element is written inrole For providing additional information to assistive devices about the role of an element as defined by WAI-ARIAspellcheck For indicating whether the content of an element should have its spelling and grammar checked style For adding local style sheet informationtabindex For defining the order in which the Tab key takes the visitor through elementstitle For labeling elements with tool tipsTABLE A.2 HTML Elements and AttributesElement/Attribute(s) Descriptiona For creating links and anchorshref For specifying the URL of a page or the name of an anchor that a link goes tohreflang For specifying the language of the linked resourcemedia For describing the media for which the target document was definedrel For identifying the nature of the linktarget For specifying the window or iframe where a link should opentype For noting a resource’s MIME typeabbr For explaining the meaning of abbreviations and acronymsaddress For identifying contact information for the nearest article or body element ancestor area For specifying the coordinates of image mapsaccesskey For adding a keyboard shortcut to a particular region of the mapalt For giving information about an areacoords For giving the coordinates of an area in an image maphref For specifying the destination URL of a link in an area of an image maphreflang For specifying the language of the linked resourcemedia For describing the media for which the target document was definedrel For identifying the kind of linkshape For specifying the shape of an area in an image maptarget For specifying the window or iframe where a link should openarticle For identifying a self-contained composition in a page that is in principle independently distributable or reusableaside For identifying a section of a page that consists of content that is tangentially related to the content around itaudio For embedding sound or audio in a pageautoplay For telling the browser to start playing the audio file as soon as it cancontrols For telling the browser to provide controls for the audio elementcrossorigin For setting cross-origin request credentialsloop For telling the audio file to start over without interruption upon reaching its end mediagroup For associating multiple media files togethermuted For controlling the default state of audio outputpreload For specifying whether the browser can begin downloading the audio file before the visitor starts playing itsrc For identifying the URL of the audio file to playb For identifying a span of text to which attention is being drawn for utilitarian purposes, without conveying any extra importance and with no implication of an alternate voice or moodbase For specifying the base URL of the pagehref For specifying the URL to be used to generate relative URLs target For specifying the default target for the links on the pagebdi For identifying a span of text that is to be isolated from its surroundings for the purposes of bidirectional text formattingdir For specifying text directionbdo For explicitly formatting the text direction of its content dir For specifying text directionblockquote For identifying a section quoted from another sourcecite For giving the URL of the sourcebody For enclosing the main content area of a pagebr For creating a line breakbutton For creating buttonsautofocus For specifying that the button is to be focused as soon as the page is loaded disabled For indicating that the element is not available in the current stateform For associating the element with a form that it is not a part offormaction Fo r overriding the form’s action attributeformenctype For overriding the form’s enctype attributeformmethod For overriding the form’s method attributeformnovalidate For overriding the form’s novalidate attributeformtarget For overriding the form’s target attributename For identifying the data sent with a button, or for identifying the button itself (perhaps for a JavaScript function)type For using the button in a form elementvalue For specifying the data that should be submitted when the button is clickedcanvas To provide scripts with a resolution-dependent bitmap canvas for rendering graphics on the flywidth, height For specifying the size of the canvascaption For creating a caption for a tablecite For marking text as a citationcode For marking text as computer codecol For joining columns in a table into a non-structural groupspan For specifying the number of columns in a column groupcolgroup For joining columns in a table into a structural column groupspan For specifying the number of columns in a column groupcommand For representing a command the user can invoke, such as defining a keyboard command checked For indicating the checked s tate of the command (if the command type is “checkbox” or “radio”) disabled For indicating that the command is not available in the current stateicon For providing an image that represents the commandlabel For showing the name of the command to the userradiogroup For identifying the radio buttons that will be toggled when the command is toggled (if the command type is “radio”)type For indicating the type of commanddatalist To contain a group of option elements that represent a predefined set of options for another form controldd For marking a definition in a listdetails For creating a disclosure widget from which the visitor can obtain additional information or controls open For specifying whether the element is open or closed by defaultdel To mark deleted textcite For referencing a URL that explains the changedatetime For specifying the time and date of the changedfn For specifying the defining instance of a termtitle For providing the definition of the termdiv For dividing a page into block-level sectionsdl For creating a definition listdt For marking a term to be defined in a listem To mark text that has stress emphasisembed For adding multimediasrc For specifying the URL of a multimedia filetype For identifying the MIME type of the multimedia filewidth, height For specifying the size of the embedded multimedia playerfieldset For grouping a set of form elements togetherdisabled For disabling all form controls within the fieldsetform For associating the element with a form that it is not a part ofname For providing the fieldset with a name for use laterfigcaption For identifying a caption or legend for the contents of its parent figure elementfigure For identifying content that is referenced within the main flow of the document but that could be moved elsewhere without affecting the flow of the documentfooter For identifying a footer for the nearest ancestor body,section, article, or aside element form For designating a form to collect data for submissionaccept-charset For identifying the character encoding to be used with the form submission (defaults to the page’s character set)action For giving the URL of the script that will process the form dataautocomplete For preventing the browser from providing/remembering autocompletion values when the attribute is set to “off” (the default is “on”; that is, autocompletion is allowed by default)enctype For making sure files are sent to the server in the proper format method For specifying how data should be sent to the servername For providing the form with a name for use laternovalidate For allowing the form to be submitted without validationtarget For identifying the target window or iframe of the form’s s ubmission h1, h2, h3, h4, h5, h6For creating headingshead For creating the head section, which contains information about the page, including the title, author, keywords, style sheets, and scriptsheader For identifying a group of introductory content or navigational aidshgroup For identifying the heading of a section when a heading has multiple levelshr For identifying a paragraph-level thematic breakhtml For identifying a text document as an HTML documentmanifest For specifying an application cache manifest that is used when the page is offlinei For marking a span of text that is in an alternate voice or mood or that is otherwise offset from the normal prose in a manner indicating a different quality of textiframe For creating a nested browsing contextname For specifying the name of the iframe, to be used as a targetsandbox For specifying additional restrictions on the content of the iframe, for security purposes seamless For specifying whether the iframe should appear to be part of the containing page src For specifying the URL of the initial pagesrcdoc For specifying the URL of the initial pagewidth, height For specifying the size of the iframeimg For inserting images on a pagealt For offering alternate text that is displayed if the image is not and that is for users of assistive devicescrossorigin For allowing images from third-party sites (that allow cross-origin access) to be used with the canvas elementismap For indicating that the element provides access to a server-side image map (the element must be a descendant of an a element)src For specifying the URL of an imageusemap For specifying the client-side image map that should be used with the referenced image width, height For specifying the size of an image so that the page is loaded more quickly, or for scaling input For creating form elementsaccept For informing the browser what file types will be accepted if the input type is “file”alt For providing a textual alternate if the input type is “image”autocomplete For preventing the browser from providing/remembering autocompletion values when the attribute is set to “off” (the default is “on”; that is, autocompletion is allowed by default)autofocus For specifying that the input is to be focused as soon as the page is loadedchecked For marking a radio button or checkbox by defaultdirname For identifying the direction of the entered textdisabled For indicating that the input is not available in the current stateform For associating the element with a form that it is not a part offormaction For overriding the form’s action attributeformenctype For overriding the form’s enctype attributeformmethod For overriding the form’s method attributeformnovalidate For overriding the form’s novalidate attributeformtarget For overriding the form’s target attributelist For associating the input with a datalistmax, min For indicating the input element’s allowed range of valuesmaxlength For specifying the maximum number of characters that can be entered in an input element multiple For specifying whether the user can be allowed to enter more than one valuename For identifying data collected by an elementpattern For providing a reg ular expression against which the input element’s value is checked placeholder For providing a hint to aid in data entryreadonly For keeping visitors from changing certain form elementsrequired For identifying that the element must not be blank to submit the form (not allowed when the input type is “hidden,” “image,” or some button types)size For specifying the length of a text or password boxsrc For specifying the URL of an active imagestep For controlling the granularity and specificity of allowed valuestype For specifying if a form element is a text box, password box, radio button, checkbox, hidden field, submit button, reset button, active image, date/time box, number box, or color box; for selecting from a range of values; or for entering a telephone number, email address, or set of search termsvalue For specifying the default data in a form elementwidth, height For specifying the dimensions of the input (only allowed when the input type is “image”) ins For marking an addition to the documentcite For referencing a URL that explains the changedatetime For specifying the time and date of the changekbd For marking user inputkeygen For generating a public and private key pairautofocus For specifying that the keygen element is to be focused as soon as the page is loaded challenge For generating a challenge to go along with the key pairdisabled For indicating that the element is not available in the current stateform For associating the element with a form that it is not a part ofkeytype For identifying the kind of key pair to be generatedname For identifying the data that is gatheredlabel For labeling form elementsfor For specifying which form element the label belongs toform For associating the element with a form that it is not a part oflegend For labeling fieldsetsli For creating a list itemvalue For determining the initial value of the list item (if it is the child of an ol)link For linking to an external style sheet or other external resourcehref For specifying the URL of the resourcehreflang For specifying the language of the linked resourcemedia For defining a style sheet’s targeted media types and/or media featuresrel For identifying the kind of linksizes For identifying the size of the referenced icon (for use only when the rel attribute is “icon”) title For labeling an alternate style sheet or other resourcetype For noting a resource’s MIME type (only required if the link type is not “text/css”)map For creating a client-side image mapname For naming a map so it can be referenced latermark For highlighting text for reference purposes due to its relevance in another contextmath For embedding MathML in the pagemenu For containing a list of commandslabel For labeling the menutype For identifying the kind of menu being used: “context,” “list” (default), or “toolbar”meta For associating various kinds of metadata with the pagecharset For identifying the character encoding of the page itselfcontent For adding extra information about the page itselfhttp-equiv For creating automatic jumps to other pages, setting the default scripting language, and declaring the character encodingname For identifying extra information about the pagemeter For representing a measurement within a known rangehigh, low For sp ecifying a range of values as being “high” or “low”max, min For identifying the maximum and minimum allowable valuesname For identifying the data that is gatheredoptimum For identifying the optimum valuevalue For indicating the current value of the meter (required)nav For identifying a section of a page that links to other pages or to parts within the page noscript For providing alternatives to scriptsobject For embedding objects in Web pagesdata For identifying the source of the multimedia file to be embeddedform For associating the element with a form that it is not a part ofname For identifying the object (e.g., so it can be scripted)type For noting the object’s MIME typetypemustmatch For indicating that the resource specified in the object’s data attribute must have the same MIME type as identified in the object’s type attribute (allowed only if the object’s data and type are both specified)usemap For indicating whether the object has an associated image map width, height For specifying the dimensions of the object’s boxol For creating ordered listsreversed For specifying whether the list is descending (. . . , 3, 2, 1)start For specifying the initial value of the first list itemtype For specifying the kind of numerals that should begin each list itemoptgroup For grouping a set of option elements under a common label within a select element disabled For indicating that the element is not available in the current statelabel For labeling the group of optionsoption For creating the individual options in a select or datalist element disabled For indicating that the element is not available in the current statelabel For specifying how the option should appear in the menuselected For making a menu option be selected by default in a blank formvalue For specifying the initial value of a menu optionoutput For representing the result of a calculationfor For creating an explicit association between the result of a calculation and the values that went into the calculationform For associating the element with a form that it is not a part of name For identifying the data that is gatheredp For creating a paragraphparam For setting properties of an objectname For identifying the kind of propertyvalue For setting the value of the named propertypre For representing a block of preformatted textprogress For identifying the completion progress of a task max Must be a valid floating-point number greater than zero (if present)value Must be a valid floating-point number equal to or greater than zero (and less than or equal to the value of the max attribute, if it is present)q For quoting short passages from another source cite For giving the URL of the source of the quoterp For providing parentheses around a ruby text component of a ruby annotation in browsers that don’t support ruby annotationsrt For marking the ruby text component of a ruby text annotationruby For allowing text to be marked up with ruby annotationss For identifying text that is no longer accurate or no longer relevant samp For representing sample output from a program or computing system script For adding “automatic” scripts to a pageasync For influencing script loading and executioncharset For specifying the character set an external script is written indefer For influencing script loading and executionsrc For referencing an external scripttype For specifying the scripting language the script is written in (only required if the script type is not “text/javascript”)section For identifying a section of a documentselect For creating form control for selecting from a set of optionsautofocus For specifying that the select element is to be focused as soon as the page is loaded disabled For indicating that the element is not available in the current stateform For associating the element with a form that it is not a part ofmultiple For allowing users to choose more than one option in the menuname For identifying the data collected by the menurequired For identifying that the user must select one of the options in order to submit the form (the first child option element must be a placeholder or an empty value)size For specifying the number of items initially visible in the menu (and for displaying the menu as a list)small For representing side comments such as small printsource For identifying multiple alternative media resources within an audio or video element crossorigin For setting cross-origin request credentialsmedia For identifying the intended media type of the resourcesrc For identifying the URL of the audio or video file to playtype For noting a resource’s MIME typespan For wrapping content in an element that has no intrinsic semantic meaningstrong For indicating strong importance of the element’s contentstyle For embedding style information in a pagemedia For indicating a style sheet’s purposescoped For applying styles only to the descendants of the element’s parenttype For indicating a style sheet’s MIME type (only required if the style type is not “text/css”) sub For creating subscriptssummary For identifying a summary, caption, or legend for the contents of its parent details element sup For creating superscriptssvg For embedding Scalable Vector Graphics in the pagetable For creating tablestbody For identifying the body of the table; in contrast with the header (thead) or footer (tfoot) td, th For creating regular and header cells, respectively, in a tablecolspan For spanning a cell across more than one columnrowspan For spanning a cell across more than one rowscope For identifying to which rows, columns, rowgroups, or columngroups a th applies textarea For creating text block entry areas in a formautofocus For specifying that the text area is to be focused as soon as the page is loadeddirname For identifying the direction of the entered textdisabled For indicating that the element is not available in the current stateform For associating the element with a form that it is not a part ofmaxlength For specifying the maximum number of characters that can be entered in a textarea name For identifying the data that is gathered with the text blockplaceholder For providing a hint to aid in data entryreadonly For protecting a text area’s contentsrequired For indicating that the element must not be blank in order to submit the formrows, cols For specifying the number of rows and columns in the text blockwrap For specifying the use of soft or hard wraps when content of field is submittedtfoot, thead For identifying the footer and header area of a tabletime For specifying a date, a time, or bothdatetime For providing a machine-readable version of the time or date expressed in the element’s text pubdate For specifying the publication date and time of the element’s ancestor article or body element title For creating the title of the page (required)tr For creating rows in a tabletrack For specifying external timed text tracks for the parent audio or video element default For indicating which track is the defaultkind For identifying whether the track is “subtitles,” “captions,” “descriptions,” “chapters,” or “metadata”label For providing a user-readable name for the track src For identifying the URL of the track’s data srclang For identifying the language of the track’s datau For displaying a span of text with an unarticulated, though explicitly rendered, non-textual annotationul For creating unordered listsvar For marking text as a variable namevideo For embedding videos, movies, and captioned audio filesautoplay For telling the browser to start playing the video file as soon as it cancontrols For telling the browser to provide controls for the video elementcrossorigin For setting cross-origin request credentialsloop For telling the video file to start over without interruption upon reaching its end mediagroup For associating multiple media files togethermuted For controlling the default state of audio outputposter For specifying the URL of an image to use as a placeholder while media loads, or in case of an error loadingpreload For specifying whether the browser can begin downloading the media file before the visitor starts playing itsrc For identifying the URL of the video file to play width, height For specifying the dimensions of the video wbr。