MASIGNASUKAv102
6510051498749449419

CSS code example with output

CSS code example with output
Add Comments
Thursday, 3 August 2023
CSS Code Display

css Code Display

<!DOCTYPE html>
<html>
<style type="text/css">
  h1 {
    background-color: blue;
    text-align: center;
    font-family: Algerian;
    color: white;
  }
  #answer {
    background-color: pink;
  }
</style>
<h1>internal or embedded</h1>
<h1>internal style sheet</h1>
<br>
<h1><p>internal style sheet</p></h1>
<p>this is paragraph</p>
<p class="question">Html stands for</p>
<p id="answer">hyper text markup language</p>
<p class="question">css stands for</p>
<p id="answer">cascading style sheet</p>
</html>
  

Output of this code

internal or embedded

internal style sheet


internal style sheet

this is paragraph

Html stands for

hyper text markup language

css stands for

cascading style sheet