html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h2>Inline elements</h2>
<pre class="outline">
<span>1. <b>outline</b>
example</span>
</pre>
<pre class="border">
<span>1. <b>border</b>
example</span>
</pre>
<h2>Block elements</h2>
<pre class="outline">
<div>2. <b>outline</b>
example</div>
</pre>
<pre class="border">
<div>2. <b>border</b>
example</div>
</pre>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
body {
}
span,div
{
padding:3px;
font-family:Poppins;
font-size:20px;
border-radius:2px;
}
.outline>*
{
outline: red solid 1px;
}
.border>*
{
border: green solid 1px;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run