Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

CSS in elements

  • CSS can be added to individual HTML elements.
  • CSS can be embedded in the HTML file in a separate section.
  • CSS can be included from an external file.
<html>
<head>
<title>Text on the tab</title>
</head>
<body>
<h1 style="font-size:40px">Main title - CSS in HTML element</h1>
</body>
</html>