qutebrowser/tests/unit/javascript/stylesheet/simple_bg_set_red.html
2017-11-09 14:44:33 -05:00

10 lines
161 B
HTML

{% extends "base.html" %}
{% block style %}
body {
background-color: rgb(255, 0, 0);
}
{% endblock %}
{% block content %}
<p>Hello World!</p>
{% endblock %}