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 use for the first few weeks but will rely upon heavily 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