diff --git a/docs/06-style.md b/docs/06-style.md
new file mode 100644
index 0000000..87e43c7
--- /dev/null
+++ b/docs/06-style.md
@@ -0,0 +1,23 @@
+# 06. Style
+
+- `polls/static/polls/style.css`
+```css
+li a {
+ color: green;
+}
+
+body {
+ background: white url("images/loopy.png") no-repeat;
+}
+```
+
+- `polls/templates/polls/index.html`
+```html
+{% load static %}
+
+
+```
+
+
+
+- tailwind css를 이용한 커스텀
\ No newline at end of file