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

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