fork download
  1. body{
  2. background-color: lightblue;
  3. }
  4.  
  5. h1{
  6. color: red;
  7. text-align: center;
  8. }
  9. .red{
  10. color: red;
  11. font-size: 40;
  12. }
  13. .blue{
  14. color: blue;
  15. font-size: 30;
  16. }
  17. a.link{
  18. background-color: red;
  19. font-size: 30;
  20. }
Success #stdin #stdout 0.03s 25828KB
stdin
Standard input is empty
stdout
body{
    background-color: lightblue;
}

h1{
    color: red;
    text-align: center;
}
.red{
    color: red;
    font-size: 40;
}
.blue{
color: blue;
font-size: 30;
}
a.link{
    background-color: red;
    font-size: 30;
}