国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML style

We used various tags above to make the HTML text format conform to our wishes. In fact, there is an attribute that can help us reduce a lot of trouble.

style provides a universal way to change the style of all HTML elements. Here you can define the background color, font style, font size, font color, and alignment. Now let’s start writing an HTML file again

QQ截圖20161010172716.png


After seeing the effect, you will feel more friendly, and you won’t have to do it again in the future. Use these tags separately and integrate them in style. Most of the text formatting has been processed, and you will be deeply impressed.


Continuing Learning
||
<html> <body> <h1 align="center">This is heading 1</h1> <h1 style="font-family:verdana">A heading</h1> <p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p> <p>上面的標題在頁面中進行了居中排列。上面的標題在頁面中進行了居中排列。上面的標題在頁面中進行了居中排列。</p> </body> </html>
submitReset Code