Current Assignment(s)
A3: Markup
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
P1 Workshop (Assessments)
Due 11:55PM Monday, 10.15
Style
The style element allows for simple style definitions to be established in a single HTML page without having to link to external documents. This is another element we will not use for the first few weeks but will rely upon heavily after we start 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