Please enable JavaScript.
Coggle requires JavaScript to display documents.
Syntax CSS - Coggle Diagram
Syntax CSS
h1
{color:blue; front-size:12px;}
p
{calor: red; text-align: center;}
body
{background-color: green;}
(id=#para)
{text-align: center; color: red;}
p.center
{text-align: center; color: red;}
inline
<h1 style="color:blue;text-align:center;">This is a heading</h1>
internal
<style>
external
<link rel="stylesheet" href="mystyle.css">
Comment
/
This is a single-line comment
/
<p class="center large">paragraph</p>
*{text-align: center; color: blue;}