VirtualDom
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VirtualDom</title>
<style>
.list {
list-style: none;
}
.list li {
padding: 0 10px
}
.list li span{
margin: 0 5px;
}
.list li::before {
content: '>> ';
}
.blue { color: lightblue }
.red { color: lightcoral }
.orange{ color: orange }
</style>
<script src="virtualDom.js"></script>
</head>
<body>
<div id="app">
</div>
</body>
</html>