HTML form tag
1, What is a form label
The form is used to collect the user's input data, and then submit the data to the server
2, Form composition
A form has three basic components:
โ Form tag: This contains the URL of the program used to process the form data and the method to submit the data to the server.
โก Form field: contains text box, password ...
Posted by Perryl7 on Mon, 28 Feb 2022 11:22:50 +0100
Selection and cursor in the Web
In web development, sometimes it is inevitable to deal with "selection" and "cursor", such as selecting highlight, selecting toolbar, manually controlling cursor position and so on. The selection area is the part selected with the mouse, usually blueWhat about the cursor? Is it the flashing vertical line?Warm tip: the articl ...
Posted by misterfine on Thu, 24 Feb 2022 14:09:45 +0100
Three steps teach you to write a Neumorphism style small clock
If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions.
Contents of this article
order
...
Posted by uday on Sun, 20 Feb 2022 20:37:23 +0100
Vue introduction and training cases - Music Player (search music, listen to songs, watch comments, watch mv, etc.) (continuously updated)
Vue overview
It is a javascript frameworkDOM operations can be simplifiedResponsive data driven
el: mount point
Scope of vue instance: vue will manage the elements hit by el option and its internal descendant elements.Other selectors can be used, but id selectors are recommendedOther double tags can be used, but HTML and BODY cannot be used. ...
Posted by venradio on Sun, 20 Feb 2022 07:14:22 +0100
Learn WEB front end from scratch - advanced WEB page - HTML5+CSS3
๐ Project introduction
First introduce yourself. I'm a back-end programmer who doesn't write the front-end, so I teach myself the front-end ๐. In this project, I will work with you to learn the front-end from the zero foundation. From the perspective of back-end programmers, the front-end is limited by the author's level. This project will ...
Posted by AKA Panama Jack on Fri, 18 Feb 2022 20:54:49 +0100
H5 canvas introduction to mastery (Part I)
catalogue
1, Introduction to canvas
2, Drawing basis
1. Introduction to canvas label
2. canvas Context
4. Case: drawing a table in canvas
5. beginPath status of canvas
6. Draw rectangle rect
7. Draw circular arc
8. Case: draw a pie chart based on a set of data
1, Introduction to canvas
Canvas is a new label provided by HTML5 < ca ...
Posted by 2gd-2be-2rue on Fri, 18 Feb 2022 14:16:29 +0100
Implementation of online picture content editing from scratch
1, Project introduction
The main function of this project is to support dragging the text editing area or commodity picture to the canvas for editing and adjustment according to the uploaded background picture as the canvas, and finally generate the picture and css style for use by other terminals. This project is based on html/vue/css / n ...
Posted by smartsley on Thu, 17 Feb 2022 20:47:43 +0100
html simple content
HTML
# HTML is a front-end technology. It is mainly used for the development of front-end web pages. The web page developed with HTML is a static page
1, Introduction to HTML
HTML, commonly known as web page, means that what we see when we open the browser to visit any website is provided by HTML page (or content related to HTML technology) ...
Posted by opido on Sat, 12 Feb 2022 01:55:46 +0100
html + css realizes the animation effect of waiting page, with some attribute analysis
Strolling B I found some when I was standing up The main small special effects are recorded here, and the knowledge points are analyzed
The special effects are as follows
HTML code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="./css/style.css">
<title></ti ...
Posted by DWilliams on Thu, 10 Feb 2022 19:52:21 +0100
Super full html notes
html learning notes
Learning materials
https://www.w3school.com.cn/html/index.asp
Most commonly used labels
Title: < H1 > - < H6 >
Paragraph: < p >
Link: < a >
Image: < img >
Horizontal line: < HR / >
Blank line / line feed: < br / >
Section or area: < div >
Intra line block: < s ...
Posted by Dvorak on Wed, 09 Feb 2022 13:11:13 +0100