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
  • Use mouse events to achieve simple mouse effects

    Use mouse events to achieve simple mouse effects

    The code is super simple, there are not many BBs here. I will just copy the code as follows:<!doctype html><html lang="zh-cn"><head><meta charset="UTF-8"><title> Document</title>
    2025-05-31
  • JavaScript charCodeAt method begins with the example (Unicode encoding for the specified position characters)

    JavaScript charCodeAt method begins with the example (Unicode encoding for the specified position characters)

    JavaScript charCodeAt method The charCodeAt method is used to obtain Unicode encoding of characters with specified positions from a string. The syntax is as follows: The copy code code is as follows: str_object.charCodeAt(x) parameter description:
    2025-05-31
  • Introduction to common tags for XHTML

    Introduction to common tags for XHTML

    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-05-31
  • HTM beginner notes (must read for beginners)

    HTM beginner notes (must read for beginners)

    1. What is htmlHTML (HyperText Markup Language): Hypertext markup language, a plain text-type language-using markup language with angle brackets to identify the content in the web page one by one. The markup language used to design the web page is written
    2025-05-31
  • HTML elementary tutorial image

    HTML elementary tutorial image

    If it is all text, it looks boring and boring. Naturally, web pages should not be just text (hehe, for some technical documents, I think text is already serious enough - translator's note). It is multimedia, and the most common form is images. Image t
    2025-05-31
  • JS+CSS implements a practical method of clicking the input box to pop up the selection box

    JS+CSS implements a practical method of clicking the input box to pop up the selection box

    This article describes the practical method of clicking the input box to pop up the selection box in JS+CSS. Share it for your reference. The specific implementation method is as follows: Copy the code code as follows:
    2025-05-31
  • How to implement the association between frame windows and the use of hyperlink target attributes

    How to implement the association between frame windows and the use of hyperlink target attributes

    To achieve the association of frame windows, the key is to set the properties of the hyperlink target window. The example is as follows: 1. Add a name identifier to the right frame window, as follows<frame src=right.html name=rightFrame/> 2. In the left w
    2025-05-31
  • Node.js encoding specification

    Node.js encoding specification

    When calling a function, there is no space between the function name and the opening bracket. There is no space between the function name and the sequence of parameters; there is a space between all other syntax elements and the opening bracket. Use the s
    2025-05-31
  • JS, CSS style reference writing

    JS, CSS style reference writing

    CSS: 1. <link type=text/css href=<%=ResolveUrl(~/css/css.css)%> rel=stylesheet/> asp.net relative to server path
    2025-05-31
  • Rel attribute of HTML link tag

    Rel attribute of HTML link tag

    <link>Tags define the relationship between the current document and other documents in the Web collection. The link element is an empty element that contains only attributes. This element can only exist in the head part, but it can occur any number of tim
    2025-05-31
  • A deep understanding of JavaScript series (27): Design Pattern Builder Mode Detailed Explanation

    A deep understanding of JavaScript series (27): Design Pattern Builder Mode Detailed Explanation

    Introduction In software systems, we sometimes face the creation of "a complex object", which is usually composed of sub-objects of each part using certain algorithms; due to changes in requirements, the various parts of this complex object ofte
    2025-05-31
  • How to set HTML line spacing and problems

    How to set HTML line spacing and problems

    set up<p></p> The line spacing can be achieved using style=line-height:3px;. However, if the last line of text is set in this way, only half of the text will occur. Figure 1 below. The solution is as follows: add an empty one below the last line of text<p
    2025-05-31
  • HTML5 web design: hgroup element use

    HTML5 web design: hgroup element use

    Article introduction of Wulin.com (www.vevb.com): Overview of the usage of HTML5 hgroup elements.hgroup is a newly defined element in HTML5, used to group titles and subtitles. Why do we need one more if we already have the header tag<hgroup> Label? This
    2025-05-31
  • JavaScript implements a way to change the background and font color of web pages

    JavaScript implements a way to change the background and font color of web pages

    This article describes the JavaScript method to change the background and font color of the web page. Share it for your reference. The specific analysis is as follows: JavaScript, by clicking the button to change the color of the web page background and f
    2025-05-31
  • The difference between the size of Input and the maxlength attributes Self-understanding

    The difference between the size of Input and the maxlength attributes Self-understanding

    Recently, I used the size and maxlength attributes of input in my project. I used to only use it without any care to see the difference between these two tags. I baidued it on the weekend and understood it. Special records here! Copy the code
    2025-05-31