Web front end -- HTML+CSS+JavaScript responsive web technology web page design
Near the end of the term, you are still designing your final homework for HTML web pages. Do you feel the teacher's homework requirements are great? The total number of pages required is too much? Can't you start HTML web page homework? No suitable template? And so on. The problems you want to solve are: personal, food, com ...
Posted by Dan911 on Sat, 13 Nov 2021 02:14:35 +0100
Leading plan Day003Html
Media elements and forms
1. Media elements
1-1. Picture
image abbreviation empty element
<!--src Picture address (absolute or relative path) source-->
<!--alt Picture alternative text-->
<!--title Mouse hover text-->
<!--width height Width and height of the picture-->
<!--usemap The Image Map element Operate o ...
Posted by johnnyk on Thu, 04 Nov 2021 23:46:18 +0100
css quick start tutorial
preface
before you start, let's explain: This article only involves basic CSS knowledge. If there are students who do front-end development, you can skip it. This article is aimed at students who just get started and turn to front-end development from other directions. As we all know, CSS is not a programming language. Its learning in t ...
Posted by OhLordy on Thu, 04 Nov 2021 15:14:27 +0100
CSDN training - Implementation of HTML static page
preface
The full name of HTML is hypertext markup language, which is a markup language. It includes a series of labels, which can unify the document format on the network and connect the scattered Internet resources into a logical whole. HTML text is a descriptive text composed of HTML commands. HTML commands can explain text, graphics, ...
Posted by Pnop on Fri, 29 Oct 2021 16:53:18 +0200
CSS Basics: day 1
css style rules:
selector{Attribute 1: attribute value 1; Attribute 2: attribute value 2;}
p{font-size:10px; color: red;}
Strictly case sensitive, but attributes and values are not case sensitive, but are generally lowercaseA semicolon in English is required between multiple attributes; Separation, the last one can be omittedIf the attrib ...
Posted by BSlepkov on Fri, 29 Oct 2021 16:45:28 +0200
go export html report (using hero precompiled html template engine)
preface
According to the project requirements, the data of the server needs to be exported for easy portability and display. An html report is exported and how to implement it is considered.
Use front-end frameworks such as vue to export the data into json files one by one, and then dynamically render the html view by reading jsDirectly write ...
Posted by nepton on Wed, 27 Oct 2021 12:11:03 +0200
Horizontal and vertical centering
In the development process, it is inevitable that all kinds of centers, block level, intra row level, fixed height, variable height, vertical, horizontal or horizontal vertical center. We'll sort out the implementation schemes and which scheme should be selected in the development. So that it can be used more conveniently in the future.
horizo ...
Posted by anoopmail on Wed, 27 Oct 2021 06:24:55 +0200
CSS background properties with notes
CSS background properties
The CSS background attribute is used to define the background of HTML elements.
CSS attribute defines the background effect:
background-color background color
background-image Background picture
background-repeat ...
Posted by wilburforce on Mon, 25 Oct 2021 08:09:57 +0200
vue component Foundation
vue componentization
Simple understanding
What is componentization?
The so-called componentization means that the page is divided into multiple components, and the CSS, JS, templates, pictures and other resources that each component depends on are developed and maintained together. Because components are resource independent, components can ...
Posted by John_S on Tue, 19 Oct 2021 07:55:00 +0200
Java Web practice detailed tutorial MVC and three-tier architecture
First, declare that MVC and three-tier architecture are two different concepts. But it is to realize the principle of single function and realize the decoupling of modules. The two of them are not in conflict, but can coexist. The two architecture ...
Posted by nick5449 on Tue, 19 Oct 2021 02:45:40 +0200