HTML - tag attribute summary

Start with HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> Common tags for HTML <h> To define the title, there are six levels, and the title decreases from one to six <p>To define the paragraph < strong > used for bold fon ...

Added by voltrader on Sat, 30 Oct 2021 17:40:27 +0300

The fourth day of learning html on October 28, 2021

1. Form label 1.1 main functions of tables Tables are mainly used to display and display data 1.2 basic syntax of tables Shape such as <table> <tr> <td>Text in cell</td> ... </tr> ... </table> Of which: 1.table label is a label used to define a table; 2.tr is the abbreviation of table row. I ...

Added by rsassine on Fri, 29 Oct 2021 14:52:55 +0300

css to achieve radio box effect

Effect view: 1, Build html page structure First, create a box in the html page to store buttons and text A large box is not enough. The span label is used to describe the text, and the i label is used to represent the dot in the middle of the radio box. These are covered with a small box, which is used to outline the frame of the radio box ...

Added by BulldogGC on Thu, 28 Oct 2021 03:31:05 +0300

Wechat like voice + video call function developed by uniapp+nvue: realize one-to-one voice and video online call

This article is the third to realize the wechat effect function by using uni app and nvue. Today, we implement the example project of uniapp imitation wechat audio and video call plug-in based on uniapp + nvue, which realizes the following functions: 1: Voice call 2: Video call 3: Paging status feedback Software effect:         T ...

Added by AjithTV on Sun, 24 Oct 2021 15:13:57 +0300

"Here comes the offer" 1 mind map and 6 knowledge sections, which will take you to sort out the knowledge points of CSS in the interview!

⌛ preface For the front end, css is a necessary knowledge for beginners. Basically, after dabbling in html, you learn css. At the same time, css is also a necessary knowledge point for the front-end, such as horizontal and vertical center, two column layout, three column layout and bfc, which are both common and necessary test points fo ...

Added by ryochiji on Sun, 24 Oct 2021 02:19:11 +0300

Vue HR my (day01) = = = login page

1, Style modification The styles to be modified are listed below When we provide the wrong user name and password, the status code of this request is normal (but the success field is false) and there is no network error, so axios will not report an error. As shown below Set the logo on the login form Set the background picture o ...

Added by poring on Sat, 23 Oct 2021 08:06:09 +0300

CSS Basics - font and text property settings with notes

CSS - beautify web page elements - font and text properties Using CSS style to beautify web page text has the following significance. 1. Effective delivery of page information 2. Use CSS beautified page text to make the page beautiful and attractive to users 3. It can highlight the theme content of the page, so that users can see the main c ...

Added by supergrover1981 on Sat, 23 Oct 2021 03:53:58 +0300

Dynamic rotation chart (realized by html+css+js)

I use js+css+html to realize a dynamic rotation chart. I intend to write a blog to record it. I will put it below: video effect of works + explanation of ideas + explanation of knowledge points + how to obtain it Video effects of works: js+html+css to realize dynamic rotation diagram - Google Chrome 2021-10-22 20-02-35 Explanation ...

Added by sssphp on Fri, 22 Oct 2021 16:06:23 +0300

HTML series of practical hyperlinks, audio and video

To realize a self introduction page, it is required to use the page's jump, audio, video and other comprehensive attributes. The code of the main page is: (introduction. HTML) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"& ...

Added by rajsekar2u on Fri, 22 Oct 2021 07:39:32 +0300

Practical table of HTML series examples

1. Create a list as shown in the figure The code is as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <ol type='1' start='1'&gt ...

Added by fross on Fri, 22 Oct 2021 06:18:16 +0300