Home>Web design tutorial> HTML tutorial
All Dreamweaver tutorial Javascript tutorial HTML tutorial CSS tutorial Experience and skills DHTML tutorial Web effects WEB standardization
HTML tutorial
  • Solution to the audio format supported by audio in html5

    Solution to the audio format supported by audio in html5

    The HTML5 Audio tag can support wav, mp3, ogg, acc, webm and other formats, but there is a very important music file format midi (extension mid) that does not have built-in support in major browsers. Not all browsers support MP3 OGG and the like. Each bro
    2025-02-03
  • Talk about the application of html web table table structured labeling

    Talk about the application of html web table table structured labeling

    Before talking about the structured mark of the web form, you should first read a few pictures. The structured and so -called structured of the HTML table is as shown in the above -mentioned first pair of graphs, which is to divide our tables into three t
    2025-02-03
  • Problems with HTML form elements overriding style elements and their remedies

    Problems with HTML form elements overriding style elements and their remedies

    In the process of designing HTML pages, we often encounter problems caused by form elements covering style elements. Figure 1 is a typical example. Don't underestimate this seemingly "low-level" problem. Similar problems are not uncommon eve
    2025-02-03
  • CSS: Customize colorful web link underlines

    CSS: Customize colorful web link underlines

    CSS itself does not directly provide the function of changing the underline of HTML links, but as long as we use some techniques, we can still make the monotonous underline of web links become colorful. 1. Basic principles First of all, the first step to
    2025-02-03
  • Websocket in HTML5 implements live broadcast function

    Websocket in HTML5 implements live broadcast function

    For video live streaming, I studied many solutions in the early stage, including websocket. Due to various reasons, I did not adopt this solution in the end, but I still want to record my learning experience. WebSocket is a protocol for full-duplex commun
    2025-02-03
  • WeChat browser back button interception function in the upper left corner

    WeChat browser back button interception function in the upper left corner

    In the development of WeChat public accounts, sometimes it is necessary to intercept and process the page logic related to the return button in the upper left corner of the browser, instead of letting the page directly return to the previous page. This de
    2025-02-03
  • [HTML5] 3D model-Erhang code implementation rotation stereo cube instance

    [HTML5] 3D model-Erhang code implementation rotation stereo cube instance

    Recently, the gameplay of Rubik's cube suddenly wanted to write a Miku's model with HMTL5. Since the Rubik's Cube is a 3D cube, this time I tried to write a simple 3D model with HTML5. The following is a preview screen. First of all, you need
    2025-02-03
  • How to use Gaussian blur on svg page in html5

    How to use Gaussian blur on svg page in html5

    First put this code in any area of ​​the page. stdDeviation sets the blur amount, the minimum is 0<svg style=display:none><filter id=blur-effect-1>
    2025-02-03
  • Detailed explanation of html meta

    Detailed explanation of html meta

    Introduction Meta tag is an auxiliary label in the HTML language Head area. Meta is often used to define the instructions, keywords, and finally modify the date, and other metadata. These metadata will serve the browser (how to layout or re -load page), s
    2025-02-03
  • HTML formatting JSON's instance code

    HTML formatting JSON's instance code

    I do n’t say much nonsense, I will post code directly. The specific code is shown below:<!DOCTYPE html><html><head><meta charset=utf-8><title> Js bin</title>
    2025-02-03
  • Introduction to HTML DOM_ Power Node Java College

    Introduction to HTML DOM_ Power Node Java College

    What is DOM? With JavaScript, you can reconstruct the entire HTML document. You can add, remove, change, or re -arrange items on the page. To change something on the page, JavaScript needs to access the entrance to all elements in the HTML document. This
    2025-02-02
  • Detailed explanation of WebSocket cross-domain problem solving

    Detailed explanation of WebSocket cross-domain problem solving

    WebSocket protocol is a new protocol of HTML5. It realizes full-duplex communication between the browser and the server and allows cross-domain communication. It is a good implementation of server push technology. We use Socket.io, which encapsulates the
    2025-02-02
  • html5 video playback

    html5 video playback

    1. HTML5 technical advantage 1 About video without plug -in play, click to watch 2 cross -platform, upgrade, and maintain. The development cost is relatively lower than the native APP. Many of the 3 pairs of good support, support gestures, local storage a
    2025-02-02
  • HTML5 web cache and application cache (cookie, session)

    HTML5 web cache and application cache (cookie, session)

    Before introducing HTML5 web caching, let’s get to know cookies and sessions: session: Since HTTP is stateless, who are you? What did you do? Sorry, the server doesn't know. So the session appears, which stores user information on the server for futur
    2025-02-02
  • Detailed explanation of the method of setting the expiration time of localStorage

    Detailed explanation of the method of setting the expiration time of localStorage

    We all know that localStorage is not actively deleted and will never be destroyed, so how to set the expiration time of localStorage? Let’s try it together today!<script type=text/javascript> //封装过期控制代码 functi
    2025-02-02