search
HomeWeb Front-endHTML Tutorial10 recommended articles about cold knowledge

HTML is the unified language of the Web. These rough tags contained in angle brackets constitute today's Web. In 1991, Tim Berners-Lee wrote a document called "HTML Tags", which included about 20 HTML tags used to mark web pages. He directly borrowed the markup style of SGML, which is the HTML markup style we saw later. Today, the editor of Huwu will sort out some cold knowledge about HTML5 that you may not know. Many people should know that JavaScript code can be run in the browser address bar. JavaScript code can be run directly in the browser address bar. The method is to start with javascript: followed by the statement to be executed. For example: Note that to execute javascript code, you need to enter it manually in the browser. If you copy the code, IE and Chrome will automatically remove the javascript: at the beginning of the code, so you need to add it manually to execute it correctly. Although it will not be automatically removed in Firefox, But it doesn't support running JS code in the address bar at all! ! If the browser address bar runs the HTML code, if it says the above

1. Recommended 7 articles about unpopular topics

10 recommended articles about cold knowledge

Introduction: HTML is the unified language of the Web. These rough tags contained in angle brackets constitute today's Web. In 1991, Tim Berners-Lee wrote a document called "HTML Tags", which included about 20 HTML tags used to mark web pages. He directly borrowed the markup style of SGML, which is the HTML markup style we saw later. Today, the editor of Huwu will sort out some cold knowledge about HTML5 that you may not know. Many people should still know that the browser address bar runs JavaScript code...

2. There are some cold knowledge in CSS3 that you don’t know

10 recommended articles about cold knowledge

Introduction: Maybe when we look at the source code of some web pages, we will find attributes or usage that we have never seen before. Today I will summarize it. Let’s take a look at the cold knowledge style calculation of CSS3. Simple calculations can also be performed in CSS. This can be achieved through the calc function. This can also make our elements adaptive. Of course, the calculated value should be a legal value. demo { ... width: calc(100 % - 500px); height: 200px;} In this demo, the width value of the element is

3. Share some unpopular HTML5 knowledge

10 recommended articles about cold knowledge

Introduction: HTML is the unified language of the Web. These rough tags contained in angle brackets constitute today's Web. In 1991, Tim BernersLee wrote a document called "HTML Tags", which included about 20 HTML tags used to mark web pages. He directly borrowed the markup style of SGML, which is the HTML markup style we saw later. Today, the editor of Huwu will sort out some cold knowledge about HTML5 that you may not know. Many people should run JavaScript code in the browser address bar...

4. Detailed introduction to cold knowledge about WeChat development (picture)

10 recommended articles about cold knowledge

Introduction: The pre-work for the development of WeChat public platform is as shown in the figure, URL (network link for signature verification), Token, and JS interface security The domain is required, and the URL and Token are required. Before configuring them, the signature verification code must be uploaded to your development server. Otherwise, no matter how you submit the interface configuration information, you will only be prompted for configuration. fail. The URL mentioned earlier is the network path to access the signature verification code, such as (http://huanxiteng.cn/wxsignature.php); the signature code can be opened on WeChat...

5. Detailed explanation of how JavaScript gets the true size of an image

10 recommended articles about cold knowledge

Introduction: The sizes of images on web pages seem to be the same. In the article pages we most often see with multiple pictures, the size of the pictures is usually the same as the width of the page. In this way, the page looks like a straight cylinder. If you see this layout too much, it will feel very monotonous. The reason for this situation, I think, is largely due to the limitations of old browsers. However, with the popularity of modern browsers (Firefox/Google/IE11), browsers have fewer and fewer restrictions on page design, and the imagination of Web programmers can be greatly utilized. For example, trivia: Do you know where the [x] in every window comes from? In this article, many pictures exceed the text...


The above is the detailed content of 10 recommended articles about cold knowledge. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What are self-closing tags? Give an example.What are self-closing tags? Give an example.Apr 27, 2025 am 12:04 AM

Self-closingtagsinHTMLandXMLaretagsthatclosethemselveswithoutneedingaseparateclosingtag,simplifyingmarkupstructureandenhancingcodingefficiency.1)TheyareessentialinXMLforelementswithoutcontent,ensuringwell-formeddocuments.2)InHTML5,usageisflexiblebutr

Beyond HTML: Essential Technologies for Web DevelopmentBeyond HTML: Essential Technologies for Web DevelopmentApr 26, 2025 am 12:04 AM

To build a website with powerful functions and good user experience, HTML alone is not enough. The following technology is also required: JavaScript gives web page dynamic and interactiveness, and real-time changes are achieved by operating DOM. CSS is responsible for the style and layout of the web page to improve aesthetics and user experience. Modern frameworks and libraries such as React, Vue.js and Angular improve development efficiency and code organization structure.

What are boolean attributes in HTML? Give some examples.What are boolean attributes in HTML? Give some examples.Apr 25, 2025 am 12:01 AM

Boolean attributes are special attributes in HTML that are activated without a value. 1. The Boolean attribute controls the behavior of the element by whether it exists or not, such as disabled disable the input box. 2.Their working principle is to change element behavior according to the existence of attributes when the browser parses. 3. The basic usage is to directly add attributes, and the advanced usage can be dynamically controlled through JavaScript. 4. Common mistakes are mistakenly thinking that values ​​need to be set, and the correct writing method should be concise. 5. The best practice is to keep the code concise and use Boolean properties reasonably to optimize web page performance and user experience.

How can you validate your HTML code?How can you validate your HTML code?Apr 24, 2025 am 12:04 AM

HTML code can be cleaner with online validators, integrated tools and automated processes. 1) Use W3CMarkupValidationService to verify HTML code online. 2) Install and configure HTMLHint extension in VisualStudioCode for real-time verification. 3) Use HTMLTidy to automatically verify and clean HTML files in the construction process.

HTML vs. CSS and JavaScript: Comparing Web TechnologiesHTML vs. CSS and JavaScript: Comparing Web TechnologiesApr 23, 2025 am 12:05 AM

HTML, CSS and JavaScript are the core technologies for building modern web pages: 1. HTML defines the web page structure, 2. CSS is responsible for the appearance of the web page, 3. JavaScript provides web page dynamics and interactivity, and they work together to create a website with a good user experience.

HTML as a Markup Language: Its Function and PurposeHTML as a Markup Language: Its Function and PurposeApr 22, 2025 am 12:02 AM

The function of HTML is to define the structure and content of a web page, and its purpose is to provide a standardized way to display information. 1) HTML organizes various parts of the web page through tags and attributes, such as titles and paragraphs. 2) It supports the separation of content and performance and improves maintenance efficiency. 3) HTML is extensible, allowing custom tags to enhance SEO.

The Future of HTML, CSS, and JavaScript: Web Development TrendsThe Future of HTML, CSS, and JavaScript: Web Development TrendsApr 19, 2025 am 12:02 AM

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

HTML: The Structure, CSS: The Style, JavaScript: The BehaviorHTML: The Structure, CSS: The Style, JavaScript: The BehaviorApr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.