Style
The style element establishes simple style definitions in a single HTML page without linking to external documents. The style tag is another element we will not rely on heavily for the first few weeks but will use it extensively after looking at CSS.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Other meta elements -->
<style>
body {background-color: snow}
h1 {color: purple}
</style>
</head>
</html>
html
- Previous
- Next