HTML-CSS
An in line CSS uses for styles attributes an a HTML element.
<h1 style="color:powder blue;"">This is a heading</h1>
<p style="color:powder blue;"">This is a paragraph</p>
An internal CSS used for the style of single HTML element.
<head> An internal CSS of a HTML page,
Section page with a <style>
<style>
body {
background-color: red;
}
h2 {
color: blue;
}
p {
color: red;
}
No comments:
Post a Comment