HTML/CSS/Style Basics/Inline Style

Материал из Web эксперт
Перейти к: навигация, поиск

inline style demo

   <source lang="html4strict">

<html>

<head>
 <title>inline style</title>
<head>
<body>

Hello, world!</p </body> </html> </source>

Inline style for header

   <source lang="html4strict">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html>

    <head>
     <meta http-equiv="content-type" content="text/xhtml; charset=windows-1252" />
     <meta http-equiv="content-language" content="en-us" />
       <title>Exercise 1</title>
    </head>
    <body>

Heading 1

Heading 2

       <p style="font-family: Times New Roman; color: black; font-size: 12pt;">
           Some paragraph text.

   </body>

</html>

</source>