font



значения свойства:


  • font-style
  • font-variant
  • font-weight
  • font-size [/line-height]
  • font-family



css/style.css
  • .a {
  •  font: 16px/18px Courier New;
  • }
.a {
 font: 16px/18px Courier New;
}


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <p class="a">Hello World!</p>
  •  <br />
  •  <p id="p1">Hello World!</p>
  •  <br />
  •  <p class="b">Hello World!</p>
  • <script>
  •  /*JavaScript*/
  •  document.getElementById("p1").style.font = "bold 18px Times New Roman";
  •  /*jQuery*/
  •  $(document).ready(function () {
  •   $(".b").css({ "font": "italic bold 20px/20px Comic Sans MS, Trebuchet MS" });
  •  });
  • </script>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="css/style.css" rel="stylesheet" />
  •  <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  • </head>
  • <body>
  •  <p class="a">Hello World!</p>
  •  <br />
  •  <p id="p1">Hello World!</p>
  •  <br />
  •  <p class="b">Hello World!</p>
  • <script>
  •  /*JavaScript*/
  •  document.getElementById("p1").style.font = "bold 18px Times New Roman";
  •  /*jQuery*/
  •  $(document).ready(function () {
  •   $(".b").css({ "font": "italic bold 20px/20px Comic Sans MS, Trebuchet MS" });
  •  });
  • </script>
  • </body>
  • </html>