nvim/test-html.html

20 lines
308 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.test-class {
color: red;
}
#test-id {
background: blue;
}
</style>
</head>
<body>
<div class="test-class" id="test-id" data-value="test">
<p>Hello World</p>
</div>
</body>
</html>