In this week's Design Blog I wanted to share what I learned this week. This week we learned about HTML - HyperText Markup Language. It’s the standard language used to create and structure content on the web.
I learned the different hierarchies between the
<h1> being the most important heading / largest text
<h2> is used for subheadings under <h1>
<h3> is the next subheading over from <h2>
Another thing I learned was how to open and close tags
for example <tagname> Content here</tagname>
<tagname> open tag
</tagname> closed tag
This is important because HTML is like building blocks, and if tags are not closed properly, it will display incorrectly or not at all.
The difference between <ul>,<ol>, and <li>
<ul> = unordered list
- bulleted list
- no particular order needed
- uses dots by default
<ol> = ordered list
- numbered list
- order matters here
No comments:
Post a Comment