HTML5 final assignment: small gift shopping website design - small gift shopping mall website (12 pages) HTML+CSS+JavaScript html web page design final assignment_ Web design homework

HTML5 final assignment: small gift shopping website design - small gift shopping mall website (12 pages) HTML+CSS+JavaScript html web page design final assignment_ Web design homework Common web design topics include individuals, food, companies, schools, tourism, e-commerce, pets, electrical appliances, tea, home, hotels, dance, animation, ...

Posted by Moesian on Wed, 24 Nov 2021 22:45:48 +0100

[front end nanny level notes] super detailed html notes!!! (produced by Xiaobai)

html skeleton Basic skeleton <html> <head> <title> </title> </head> <body> </body> </html> Complete skeleton <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <title></title> </head> <body> & ...

Posted by cags on Tue, 23 Nov 2021 23:05:22 +0100

JavaScript Branch Structure Learning (Learning Diary 5)

1. Statements            Statement: JavaScript programs are executed in lines, which means line-by-line execution. In general, each line is a statement             The difference between a statement and an expression:             &n ...

Posted by Bryan Ando on Sun, 21 Nov 2021 19:04:49 +0100

Learning notes on Web front end development 07--HTML and CSS

1. Advanced CSS skills 1.1 wizard diagram Sprite technology is mainly used for background pictures, which is to integrate multiple small background pictures into a large picture When moving a background picture, you can only use background positionThe moving distance is the x and y coordinates of the target imageThe value is negativeWhen ...

Posted by phpknight on Sun, 21 Nov 2021 10:31:04 +0100

Playing with CSDN replication and focused reading

1, Introduction This article is only for reference and learning, and the content is written according to the test results. As we all know, some articles of CSDN have been criticized by everyone all the time. This article will introduce how to use u monkey as an introduction 1 Script to solve the login and replication restrictions of some a ...

Posted by Tea_J on Sat, 20 Nov 2021 19:31:37 +0100

FS platform front-end design description v1, learn html front-end development

}); layui.data(‘test’, null); // Delete test table //Modify: the same as add. The stored data will be overwritten //[query]: read all data from the test table var localTest = layui.data('test'); console.log(localTest.admin); []( )3.6 Layui How to use internal jQuery -------------------------------------------------------- ...

Posted by feckless on Sat, 20 Nov 2021 09:36:08 +0100

Introduction to JavaScript basics and jQuery Basics

JavaScript Introducing JavaScript Internal label <script> //... </script> External reference <script src="js File path"></script> html file <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <!--Internal reference--> ...

Posted by shan_cool on Sat, 20 Nov 2021 08:59:27 +0100

3, Cyclic structure

catalogue 1.var let const 2. Template string 3.while loop 4. Do while loop 5.for loop 6. Loop jump statements (continue,break) 1.var let const For variables defined with var keyword, the variable name can be repeated, and the following variables will overwrite the previous variables. When variables are defined in var mode, they will b ...

Posted by darkhorn on Fri, 19 Nov 2021 16:59:37 +0100

Java Web supplement: the difference between request forwarding, request inclusion and request redirection

Request forwarding Request forwarding: after a request from the client arrives, it is found that other servlets are needed to realize the function. The client browser sends a request to servlet a to realize some functions with the help of servlet a, but servlet a cannot complete this function. At this time, it finds that servlet B can real ...

Posted by mike_y on Fri, 19 Nov 2021 09:19:32 +0100

[learning notes 2021-11-18] use of Apache server

Apache source code installation For Apache source code installation, please see the following blog, which is well written: https://blog.csdn.net/weixin_42313749/article/details/115418935 Apache server summary: 1. The folder of the installed Apache server is: / etc/httpd 2. The default root path folder of the web page is: / var/www/html 3. Th ...

Posted by nomad9 on Thu, 18 Nov 2021 14:58:22 +0100