HTML
Semanticization
The semantics of the HTML tag means: by using Semantic tags (such as h1-h6) appropriately represent the document structure
The semantics of css naming means: adding meaningful classes to html tags
Why semantics is needed:
After removing the style, the page will have a clear structure
Blind people use screen readers to update Good reading
Search engines can better understand the page, which is conducive to inclusion
-
Facilitates the sustainable operation and maintenance of team projects
Briefly describe your understanding of HTML semantics?
Do the right thing with the right tags.
html semantics structure the content of the page and make the structure clearer, making it easier for browsers and search engines to parse;
Even if there is no Style CSS is also displayed in a document format and is easy to read;
#Search engine crawlers also rely on HTML markup to determine context and the weight of individual keywords, which is beneficial to SEO;
Make it easier for people who read the source code to divide the website into chunks for easy reading, maintenance and understanding
Doctype function ? What is the difference between standards mode and compatibility mode?
##
The declaration is located
in the HTMLdocument The first line, before the
tag. Tells the browser's parser what document standard to use to parse this document.
DOCTYPENon-existence or incorrect format will cause the document to be rendered in compatibility mode
- The formatting and JS operation modes of standard mode are based on the highest standards supported by the browser run. In compatibility mode, pages are displayed in a loosely backward-compatible manner, simulating the behavior of older browsers to prevent the site from not working
- HTML5 is not based on SGML, so there is no need to reference the DTD, but a doctype is needed to regulate browser behavior (let browsers run the way they should)
- HTML4.01 is based on SGML, so you need to reference the DTD to tell the browser the document type used by the document
- link
belongs to the
# page is loaded,XHTML
tag. In addition to loadingCSS
, it can also be used to defineRSS
, definesrel
connection attributes and other functions; while@import
is provided byCSS
and can only be used to loadCSS## When the
link - will be loaded at the same time, and the
CSS
referenced by
@importwill Wait until the page is loaded before loading
import - is proposed by
CSS2.1
and can only be used with
IE5or above is recognized, and
linkis a
XHTMLtag, there is no compatibility issue
What are the common browser kernels?
- Trident
- Kernel:
IE, MaxThon, TT, The World, 360
##Gecko, Sogou browser, etc. [Also known as MSHTML]
Kernel: - Netscape6
and above,
PrestoFF, MozillaSuite/SeaMonkey
, etc. Kernel: - Opera7
and above. [
WebkitOpera
The kernel was originally: Presto, now:Blink
;] Kernel: - Safari, Chrome
, etc. [
What are the new features and migrations of html5 Besides those elements? How to deal with browser compatibility issues with HTML5 new tags? How to differentiate between HTML and HTML5?Blink
ofChrome
(branch ofWebKit
)]
HTML5 is no longer a subset of SGML, it is mainly about the addition of images, location, storage, multi-tasking and other functions
- Painting canvas
Video and audio elements for media playback
Local offline storage localStorage long-term storage data, the data will not be lost after the browser is closed
sessionStorage data will be automatically deleted after the browser is closed
Content elements with better semantics, such as article, footer, header, nav, section
Form controls, calendar, date, time, email, url , search
New technology webworker, websocket, Geolocation
Removed elements:
Purely expressive elements: basefont, big, center, font, s, strike, tt, u
Elements that negatively impact usability: frame, frameset , noframes
Support HTML5 new tags:
IE8/IE7/IE6 support generated by document.createElement method Tag
You can use this feature to make these browsers support HTML5 new tags
After the browser supports the new tag, you still need to add the tag default The style of
##What are the new features and what elements have been removed? How to deal with browser compatibility issues with HTML5 new tags? How to differentiate between HTML and HTML5?
HTML5 is no longer a subset of SGML, it is mainly about the addition of images, location, storage, multi-tasking and other functions
Painting canvas
Video and audio elements for media playback
Local offline storage localStorage long-term storage of data, the browser is closed The data will not be lost
The sessionStorage data will be automatically deleted after the browser is closed
Content elements with better semantics, such as article and footer , header, nav, section
Form control, calendar, date, time, email, url, search
New technology webworker, websocket , Geolocation
Removed elements:
- ##Purely expressive elements: basefont, big, center, font, s, strike, tt, u ##Elements that negatively impact usability: frame, frameset, noframes
- You can use this feature to make these The browser supports HTML5 new tags
- After the browser supports the new tags, you still need to add the default style of the tag
-
<!--[if lt IE 9]> <script> src="http://html5shim.googlecode.com /svn/trunk/html5.js"</script><![endif]-->
- IE8/IE7/IE6 supports tags generated through the document.createElement method
- How to distinguish HTML5: DOCTYPE declares new structural elements and functional elements
- When the user is not connected to the Internet, the site or application can be accessed normally. When the user is connected to the Internet, the cache file on the user's machine is updated
- How to use:
- Write offline storage resources in the cache.manifest file
- When offline, operate window.applicationCache to implement requirements
- Add a manifest attribute to the page header as below;
CACHE MANIFEST #v0.11 CACHE: js/app.js css/style.css NETWORK: resourse/logo.png FALLBACK: / /offline.htmlHow does the browser manage and load HTML5 offline storage resources?
When online, the browser finds that the html header has the manifest attribute, and it will request the manifest file. If it is the first time to access the app, the browser will The content of the manifest file downloads the corresponding resources and stores them offline. If the app has been accessed and the resources have been stored offline, the browser will use the offline resources to load the page, and then the browser will compare the new manifest file with the old manifest file. If the file has not changed, no operation will be performed. , if the file changes, the resources in the file will be re-downloaded and stored offline. When offline, the browser directly uses the resources stored offline Please describe cookies, sessionStorage and localStorage the difference? Cookie is data (usually encrypted) stored on the user’s local terminal (Client Side) by the website in order to identify the user’s identity Cookie data is always carried in the http request from the same origin (even if not needed), and will be passed back and forth between the browser and the server Storage size: Period time: What are the advantages and disadvantages of iframes? Disadvantages: iframe will block the Onload event of the main page The search engine's retrieval program cannot interpret this kind of page, which is not conducive to SEO iframe and the main page share the connection pool, and the browser has restrictions on connections in the same domain. Therefore, it will affect the parallel loading of the page You need to consider these two shortcomings before using Advantages: is used to load slower content ( As advertised) can enable scripts to be downloaded in parallel can achieve cross-subdomain communication What is the function of Label? How is it used? label label to define the relationship between form controls. When the user selects the label, the browser will automatically turn the focus to the form control related to the label How to turn off the autocomplete function in HTML5 form? Set autocomplete=off for forms or inputs that do not want prompts. How to achieve communication between multiple tabs in the browser? (Alibaba) WebSocket, SharedWorker You can also call local storage methods such as localstorge and cookies How is webSocket compatible with low-end browsers? (Alibaba) Adobe Flash Socket 、 ActiveX HTMLFile (IE) 、 Send XHR based on multipart encoding, XHR based on long polling Page visibility (Page Visibility What are the possible uses of API)? 通过 visibilityState 的值检测页面当前是否可见,以及打开网页的时间等; 在页面被切换到其他后台进程的时候,自动暂停音乐或视频的播放 如何在页面上实现一个圆形的可点击区域? map+area或者svg border-radius 纯js实现 需要求一个点在不在圆上简单算法、获取鼠标坐标等等 实现不使用 border 画出1px高的线,在不同浏览器的标准模式与怪异模式下都能保持一致的效果 如何实现浏览器内多个标签页之间的通信? iframe + contentWindow postMessage SharedWorker(Web Worker API) storage 事件(localStorge API) WebSocket webSocket 如何兼容低浏览器? Adobe Flash Socket ActiveX HTMLFile (IE) 基于 multipart 编码发送 XHR 基于长轮询的 XHR title 与 h1 的区别、b 与 strong 的区别、i 与 em 的区别? title 表示是整个页面标题,h1 则表示层次明确的标题,对页面信息的抓取有很大的影响 strong 标明重点内容,有语气加强的含义,使用阅读设备阅读网络时,strong 会重读,而 b 是展示强调内容 i内容展示为斜体,em 表示强调的文本 自然样式标签:b, i, u, s, pre 语义样式标签:strong, em, ins, del, code 应该准确使用语义样式标签, 但不能滥用。如果不能确定时,首选使用自然样式标签 相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章! 推荐阅读:
sessionStorage
andlocalStorage
Will not automatically send data to the server, only save it locally
cookie
The data size cannot exceed 4ksessionStorage
and localStorage
Although there are storage size limits, they are larger than cookies More, can reach 5M or larger
localStorage
Storage persistence Data will not be lost after the browser is closed unless the data is actively deletedsessionStorage
Data will be automatically deleted after the current browser window is closedcookie
The set cookie
is valid until the expiration time, even if the window or browser is closed
iframe
. If you need to use iframe
, it is best to dynamically add the src<a href="http://www.php.cn/wiki/48.html" target="_blank"> attribute value to </a>iframe
through javascript
, so that Bypassing the above two problems
<p></p>
The above is the detailed content of Front-end interview questions HTML newbies need to know. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
