3. What number is greater than 100?
4. Name a number between 1 and 100, and divisible by 7 and 13
... <link rel="stylesheet" href="style.css"> <h1>This is a header</h1> ...
External CSS File h1 {color: red;}
External CSS File #h1 {color: red;}
Editing HTML File <h1 {color: red;}>This is a header</h1>
Editing HTML File <style>h1 {color: red;}</style> <h1>This is a header</h1>
Editing HTML File <h1 style="color: red;">This is a header</h1>
Editing HTML File <style>body {color: red;}</style> <h1>This is a header</h1>