Save
Export
Download
HTML
HTML
tags
<div>
...
</div>
<span>
...
</span>
<h1>
...
</h1>
<h3>
...
</h3>
<p>
...
</p>
<img src="
...
">
<button>
...
</button>
<a href="
...
">
...
</a>
CSS
CSS
styles
body
{
background-color: #
0000FF
;
color:
white
;
font-size:
16px
;
font-weight:
400
;
}
div
{
background-color:
blue
;
color:
white
;
width:
160px
;
height:
50px
;
}
h1
{
color:
white
;
}
p
{
...:
...
;
}
button
{
...:
...
;
border:
none
;
cursor:
pointer
;
}
JS
JS
code
document.body .style.backgroundColor = "
...
"
Run