Add CSS in Style Tag

Add CSS in Style Tag

Easy CSS CSS Foundations 27 views
Explanation Complexity

Problem Statement

Create a meetcode page and write CSS inside a style tag.

Input Format

No input.

Output Format

Print the HTML+CSS code in one block.

Constraints

Use only HTML and CSS.

Input / Output Format

Input Format
No input.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use only HTML and CSS.

Examples

Input:
Output:
(HTML+CSS code)

Example Solution (Public)

CSS
<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <title>meetcode</title>
  <style>
    body { font-family: system-ui, Arial, sans-serif; }
    h1 { color: #222; }
  </style>
</head>
<body>
  <h1>meetcode</h1>
  <p>Start practicing today.</p>
</body>
</html>

Official Solution Code

<!doctype html>
<html lang='en'>
<head>
  <meta charset='utf-8'>
  <meta name='viewport' content='width=device-width, initial-scale=1'>
  <title>meetcode</title>
  <style>
    body { font-family: system-ui, Arial, sans-serif; }
    h1 { color: #222; }
  </style>
</head>
<body>
  <h1>meetcode</h1>
  <p>Start practicing today.</p>
</body>
</html>
Please login to submit solutions.
Editor
Output

                                        
Please login to submit solutions.