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 list tags: dl, dt, dd

    HTML list tags: dl, dt, dd

    Definition lists are slightly different from other types of lists, and they consist of two parts: name and definition. dt specifies a name, an inline element. dd specifies the definition, which is a block-level element. Standard attribute id, class, title
    2025-05-30
  • What is WML?

    What is WML?

    WML (Wireless Markup Language - Wireless Markup Language). It is a markup language inherited from HTML, but WML is based on XML, so it is more stringent than HTML. WML is used to create pages that can be displayed in the WAP browser. Use WML
    2025-05-30
  • node.js integrated Baidu UE editor

    node.js integrated Baidu UE editor

    Abstract: I have been building my own blog recently. I may not have time to write a blog during this period, but I still have to share it with you if I have good things. Blog websites must have an editor for editing articles, so I checked some information
    2025-05-30
  • Introduction to mathematical operations in JavaScript

    Introduction to mathematical operations in JavaScript

    In JavaScript, mathematical operations can be implemented through two operations: 1. +, -, *, /, % and other operators. 2. Use the calculation function of the Math object. For example, use Math.pow(2,3) to calculate the power of 2 to 3. Unlike Java, mathe
    2025-05-30
  • The difference between HTML tags em and strong

    The difference between HTML tags em and strong

    The difference between em and strong can be discussed from three levels. First look at the explanation in html 4.01: em: indicates emphasis.strong: indicates stronger emphasis.em expresses emphasis.
    2025-05-30
  • Share tips on using scrollbars in HTML

    Share tips on using scrollbars in HTML

    Today, when I was studying the beef brisket news release system, the beef brisket teacher talked about some knowledge about scroll bars. I didn’t mention much, but only involved part of the knowledge about scroll bars. If you want to study in depth, these
    2025-05-30
  • node.js implements code to read file content line by line

    node.js implements code to read file content line by line

    Before this, let’s introduce a line-by-line reading of the NPM: https://github.com/nickewing/line-reader. Friends who need it can take a look. Directly upload the code: function readLines(input, func) { var rem
    2025-05-30
  • How to replace all tags in html text

    How to replace all tags in html text

    (?i) means that the case does not match. Replace html in both uppercase and lowercase = html.replaceAll((<(?i)(|)[^]*/?>)|( )|(')|(/), );System.out.println(html); (<(?i)(|)[^
    2025-05-30
  • JavaScript implements calendar effects with festivals and lunar calendar

    JavaScript implements calendar effects with festivals and lunar calendar

    Script with festivals and lunar calendar: Copy the code as follows:<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><TITLE> Calendar with lunar calendar</TITLE>
    2025-05-30
  • Hexadecimal color code (complete)

    Hexadecimal color code (complete)

    Red and pink, and their hexadecimal code. #990033 #CC6699 #FF6699 #FF3366 #993366 #CC0066 #CC0033 #FF0066 #FF0033 ..#CC3399.. #FF3399 #FF9999 #
    2025-05-30
  • A deep understanding of JavaScript series (49): Function mode (Part 1)

    A deep understanding of JavaScript series (49): Function mode (Part 1)

    This article mainly introduces some techniques used in Function (Part 1). Using Function features, you can write a lot of very interesting code. This article mainly includes: callback mode, configuration object, return function, distribution program, and
    2025-05-30
  • Try to avoid using code comments when refactoring web pages

    Try to avoid using code comments when refactoring web pages

    Wulin.com (www.vevb.com) Article Introduction: I have never seen any scientific research prove this, but in the software field, it is like a dogma or a common belief. Due to its existence, it is important to write software easily and pay attention to the
    2025-05-29
  • js get the position coordinates of the window relative to the left and upper side of the screen

    js get the position coordinates of the window relative to the left and upper side of the screen

    Get the position of the window relative to the left and upper side of the screen: Copy the code as follows: var x=window.screenLeft?window.screenLeft: window.screenX ; var y=window.screenTop?window.s
    2025-05-29
  • Solution to failure of element margin-top element in div tag

    Solution to failure of element margin-top element in div tag

    As the title. The problem is weird. The element's upper label is a div, and properties such as width and height have been set. However, when the element is adjusted using margin, it cannot take effect. Students' experience prompts: set the parent
    2025-05-29
  • More than 40 beautiful web form design examples

    More than 40 beautiful web form design examples

    Web forms are the main communication channels between visitors and website owners. Feedback is always important, which is why we make sure web forms are easy to understand and intuitive to use, and even in form design it serves as an effective part of the
    2025-05-29