Practice adding CSS to an HTML file using external CSS, internal CSS and inline CSS.
User Stories
-
As a user, I should see a
div
element with ared
background,white
text, a font-size of32px
, center-aligned andbold
. -
As a user, I expect the CSS of the
div
element to be added externally by using a type selector. -
As a user, I should see the
p
element with agreen
background,white
text, and a font-size of18px
. -
The CSS of the
p
element should be added internally by using a type selector. -
As a user, I should see a
button
element with anorange
background and font-size of18px
. -
The CSS of the
button
element should have an inline style.
Uses HTML5 and CSS3.
Make sure all user stories have been met.
On GitHub Pages at the main branch.