Home> Web design tutorial
All Dreamweaver tutorial Javascript tutorial HTML tutorial CSS tutorial Experience and skills DHTML tutorial Web effects WEB standardization
Web design tutorial
  • HTML Basics: The basic structure of HTML

    HTML Basics: The basic structure of HTML

    The basic structure of HTML is super text document divided into two parts: document header and document body. In the document header, some necessary definitions are made for this document, and the various document information to be displayed in the docume
    2025-04-10
  • Summary of common application problems in XHTML code

    Summary of common application problems in XHTML code

    For some time, I found that many people don’t know how to use XHTML. Not only ordinary beginners, but some programmers are not very clear about how to write XHTML. Here I am going to summarize some common application problems, which can also enable everyo
    2025-04-10
  • HTML Advanced Tutorial Text

    HTML Advanced Tutorial Text

    When paragraph label p should be used in paragraphs, there are many cases where newline label br is abused, and it is recognized that p is used to express paragraphs. Based on the same logic, many tags should be used to define definite text elements, such
    2025-04-10
  • Raid HTML5: Javascript API Extension 3 - a new experience in local storage

    Raid HTML5: Javascript API Extension 3 - a new experience in local storage

    Why save data to the client? Storing data on the client can solve many problems and reduce unnecessary transmission of data: 1. Can save the program's status: the user can know where he works after closing the browser and opening it. 2. Can cache data
    2025-04-10
  • Sample code for dragging elements in native javascript

    Sample code for dragging elements in native javascript

    This article introduces the implementation of element drag in native javascript. Ideas: 1. First change the layout attributes of the dragged element, the key is "position:absolue"; 2. Capture the mouse events "mousedown", "mousemo
    2025-04-10
  • HTML tutorial, understand optgroup elements

    HTML tutorial, understand optgroup elements

    Select classification selection, tested IE and FF can support this element well
    2025-04-10
  • HTML5 SVG 2D Introduction 8 - Document Structure and Related Elements Summary

    HTML5 SVG 2D Introduction 8 - Document Structure and Related Elements Summary

    I have introduced many basic elements, including structure-related combinations and reuse elements. Here I will briefly summarize the remaining related elements in the SVG document structure, and then continue to appreciate other features of SVG. The elem
    2025-04-10
  • How to use small web front-end vector icons

    How to use small web front-end vector icons

    Preface When writing front-end pages, we often use some pictures like small icons. If you use the picture, the code is more troublesome. Recently, I found a convenient and practical method, just use it directly. 1. Introduce the operation method of the im
    2025-04-10
  • Click the Tag toggle and automatically switch the DIV tab

    Click the Tag toggle and automatically switch the DIV tab

    The code copy is as follows:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"><head>
    2025-04-10
  • Detailed explanation of HTML table marking (suitable for beginners)

    Detailed explanation of HTML table marking (suitable for beginners)

    TABLE><TR><TD><TH><CAPTION> ■<TABLE><TR><TD> : These three marks are the most important marks for defining a table. It can be said that learning only these three is enough.<TABLE> is a container tag, which means it is used to declare this is a table an
    2025-04-10
  • Summary of the mouse position related attributes in JavaScript

    Summary of the mouse position related attributes in JavaScript

    JavaScript does not have a mouse object, and it depends on a powerful event object to obtain mouse coordinates. By listening to the mousemove of the document, we can get the mouse position in real time. but! ! There are too many attributes related to the
    2025-04-10
  • JavaScript implements keyword highlighting function

    JavaScript implements keyword highlighting function

    The highlighting function mainly refers to highlighting the specified text in the specified area in the page, that is, background coloring. This function is usually used on search results pages. Here is a solution for you to implement it using javascript.
    2025-04-10
  • Concat method instance of JavaScript string object (used to concatenate two or more strings)

    Concat method instance of JavaScript string object (used to concatenate two or more strings)

    JavaScript concat method concat method concat method concat method concatenates two or more strings, its syntax is as follows: the code copy is as follows: str_object.concat(str1, str2, ...)str_object is the first string (object) that needs to be connecte
    2025-04-10
  • Solve the problem of automatic formatting of html after saving in vscode

    Solve the problem of automatic formatting of html after saving in vscode

    The version of vsCode has been updated in recent days, and the current version number is: 1.43. In fact, every time I update the vsCode version number, I don’t feel any obvious changes, but I just update it casually. And this time vsCode really helped me
    2025-04-10
  • How to set the time interval between clicking buttons twice in succession

    How to set the time interval between clicking buttons twice in succession

    This article describes the method of setting the time interval between two consecutive button clicks in JavaScript, and is shared with you for your reference. The specific implementation method is as follows: In many cases, in actual applications, we may
    2025-04-10