` and ``.
##### The `` tag
+
The `` tag is pretty invisible unless you style it. It's used to group _inline-elements_ (so like a word in a paragraph), and it doesn't actually do anything unless you style or manipulate it with something else.
So, let's say you have a paragraph and you really want to emphasize some text within a paragraph without a line break or anything. In comes ``. For example:
diff --git a/src/posts/html-css-tutorial.md b/src/posts/html-css-tutorial.md
index 728b68b..1f5243b 100644
--- a/src/posts/html-css-tutorial.md
+++ b/src/posts/html-css-tutorial.md
@@ -4,7 +4,7 @@ title: "HTML+CSS Tutorial, Part 1"
slug: html-css-part-1
description: "This is part 1 of a two-part tutorial for beginners as an introduction to HTML and CSS."
added: "Feb 10 2014"
-tags: [tutorial]
+tags: [technical, advice]
---
### What