亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

How to set font style

Example analysis:

The font-style attribute specifies the font style of the text.

You can set the following attribute values:

●Normal: Default value, the browser displays a standard font style.

● italic: The browser will display an italic font style.?

● Oblique: The browser will display an oblique font style.? ? ? ?


#
Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> p.normal {font-style:normal;} p.italic {font-style:italic;} p.oblique {font-style:oblique;} </style> </head> <body> <p class="normal">這是一個(gè)段落,正常。</p> <p class="italic">這是一個(gè)段落,斜體。</p> <p class="oblique">這是一個(gè)段落,斜體。</p> </body> </html>
submitReset Code