HTML/CSS/Style Basics/Inline Style

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

inline style demo

 
<html>
 <head>
  <title>inline style</title>
 <head>
 <body>
  <p style="font-size: 150%">Hello, world!</p
 </body>
</html>



Inline style for header

 
<!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>
        <h1 style="font-family: Times New Roman; color: green; font-size: 22pt;">
            Heading 1
        </h1>
        <h2 style="font-family: Times New Roman; color: green; font-size: 22pt;">
            Heading 2
        </h2>
        <p style="font-family: Times New Roman; color: black; font-size: 12pt;">
            Some paragraph text.
        </p>
    </body>
</html>