2019.10.18 notes

A. Shortcuts

1, hidden: ctrl + shift +?

2, Save: ctrl + s

3. Copy: ctrl + c

4, Paste: ctrl + v

5, the revocation: ctrl + z

II. Simple symbols

1, label, exist as a pair: <>

2, end tag: </>

3, under the headline: <title> </ title>

4, the subtitle (divided h1-h6, different header size): <h1> </ h1>

5, paragraph: <p> </ p>

6. Wrap: <br>

7、下标:<sub>     </sub>

8, superscript: <sup> </ sup>

9, bold text: <b> </ b> <br> <br>

10, italicized text: <i> </ i> <br> <br>

11, the computer automatically output: <code> </ code> <br> <br>

III. Code

1, the cover Jump to Baidu: <a href="http://www.baidu.com"> jump to Baidu </a>

2, open a new interface, jump to Baidu: <a href="http://www.baidu.com  target="_blank"> Jump to Baidu </a>

3, centered text: <h1 of style = "text-align = left: Center;" > text centered </ h1>

4, insert a picture and set the width, height: <IMG the src = "IMG / logo.png" width = "258" height = "39" />

5, an alternative text (the image when no load): <IMG border = "0" the src = "IMG / pulpit.jpg" Alt = "Pulpit Rock" width = "304" height = "228">

6, with the margin of the header of Table 1:

<table border="1">

    <tr>

        <th>Header 1</th>

        <th>Header 2</th>

    </tr>

    <tr>

        <td>row 1, cell 1</td>

        <td>row 1, cell 2</td>

    </tr>

    <tr>

        <td>row 2, cell 1</td>

        <td>row 2, cell 2</td>

    </tr>

</table>

7, unordered list

<ul>
    <li>Coffee</li>
    <li>Tea</li>
    <li>Milk</li>
</ul>

8, set the background color by hex

<P style = "background-Color: # FFFF00 ">
by setting the background color Hex
</ p>

9, by setting the background color value rbg

<P style = "background-Color: RGB (255,255,0) ">
by setting the value of the background color rbg
</ p>

10, set the background color by color name

<P style = "background-Color: Yellow ">
set the background color by color name
</ p>

Guess you like

Origin www.cnblogs.com/l1314/p/11699316.html