Skip to content

Latest commit

 

History

History
47 lines (43 loc) · 703 Bytes

BasicHTMLwithStyle.md

File metadata and controls

47 lines (43 loc) · 703 Bytes
<style> h3 { color: red; } table { border-collapse: collapse; } tr:nth-child(even){background-color: #30363d; pre, code { background: white; opacity: 0; } </style> HTML page with basic CSS
Syntax Output (In browser)
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Basic HTML web page</title>
    <style>
      h3 {
        color: red;
      }
    </style>
  </head>
  <body>
    <h3>Hello world!</h3>
  </body>
</html>

Hello world!