HTML knowledge point learning
Lesson1 - Monday (7.12)
Problem summary
html code is complex and needs more typing and patienceThe code still needs more typing to strengthen memory
Project development process
1, Markdown learning
Markdown is used to write software documents. It has its own syntax, and the browser can recognize the markdown codeIt is generally used to w ...
Posted by serenade2 on Wed, 19 Jan 2022 04:12:58 +0100
Introduction to HTML format and Tags
Basic understanding of the front end:
1. Structure (HTML) Used to describe the page structure2. Performance (CSS) Controls the style of elements in the page Beautify the page in the front end3. Behavior (JavaScript) Used to respond to user actions Play the role of page layout modification in the front end
Basic format of HTML
Hyper Text Mark ...
Posted by seeya on Wed, 19 Jan 2022 03:24:43 +0100
HTML basic notes - text
In the last article, we learned the head tag. All the tags we learned later are located in the "body" tag of the page
Before learning, let's learn how to use annotations in html
<!--Contents of notes-->
Adding comments to key code is a good programming habit. In actual development, comments on function module code are very im ...
Posted by mgallforever on Tue, 18 Jan 2022 17:33:41 +0100
If you want to do well, you must use your tools - on how to make good use of ServiceWorker
Original link: https://blog.cyfan.top/p/c0af86bb.htmlAs the leader of the front-end revolution, ServiceWorker is known as the front-end black technology without boasting. This article will explain how to skillfully use it to achieve some seemingly unimaginable things.<!--more-->This article will be continuously updated from January 8, 202 ...
Posted by zero_ZX on Tue, 18 Jan 2022 02:15:43 +0100
Learn the front end from scratch: CSS background color - did you learn today? (Day09)
Learn the front end from scratch: CSS background color - did you learn today? (Day09)
review: Learn the front end from scratch: CSS font properties and text properties - did you learn today? (Day08)
preface
Lesson 9: CSS background color
With CSS background properties, you can add background styles to page elements. The background attrib ...
Posted by nitharsanke on Mon, 17 Jan 2022 15:01:40 +0100
Getting started with WEB (HTML summary)
html is a hypertext markup language, which is used to write the structure of web pages. A simple web page can be realized by combining CSS (modification of web page structure) and JS (adding some functions to web pages).
structure
<html>
<head>
<title>Page title</title>
</head>
<body> ...
Posted by casey_00 on Mon, 17 Jan 2022 09:46:04 +0100
CSS secret: how to improve the user's visual experience only with CSS?
catalog:
1,Expand clickable area
2,Custom check box
3,Through shadows/Blur to weaken the background
4,Scroll prompt
1. Expand clickable areaThe clickable area of some buttons is very small. For user interaction, CSS needs to be used to exaggerate their clickable area.For the simple button shown below, we want to expand the clickable area by 10p ...
Posted by zak on Sun, 16 Jan 2022 20:21:46 +0100
Front end Development Notes - HTML usage
preface
Don't be afraid of the unknown, don't be afraid of making mistakes, be a Creator!
1, Introduction
HTML/Hyper Text Markup Language (Hypertext Markup Language), a front-end development technology, is used to control the Web page structure in Web development.
1. Language grammar
< tag > content < / tag > The label symb ...
Posted by bogdan on Sun, 16 Jan 2022 13:44:57 +0100
Margin margin merging problem
Problem restatement
Margin is the outer margin attribute. It defines the distance between the border and the border, but sometimes these margins are merged. Do you know what's going on?
Code demonstration
1. Vertical margin merge
css
.box1{
width: 100px;
height: 100px;
margin-bottom: 25px;
background-color: #00FFFF;
}
.box2{
width: 10 ...
Posted by kiltannen on Sun, 16 Jan 2022 04:15:39 +0100
Summary of steps to run amis code using VScode
This article mainly uses VSCode to view the web pages written in the amis framework. There are few online tutorials. Here I summarize it by collecting online data. I hope it will be helpful to you. Please forgive me for any shortcomings
get into https://nodejs.org/zh-cn/ Website, download and install. There is little difference in version sele ...
Posted by Dargrotek on Sun, 16 Jan 2022 03:15:43 +0100