In this week's Design Blog, I wanted to share what I learned this week. This week, we learned more about HTML - HyperText Markup Language. Particular things like using Dreamweaver to speed up work progress in my HTML document/ page.
Creating different class
Example
<span class=”bolder”></span>
.bolder {font-weight:750}
p, main li {line-height:1.6em;letter-spacing:.05em;}
em {font-weight:bold;}
class=”left”
.left {float:left; padding-top: 10px;
padding-right: 15px;
padding-bottom: 10px;
padding-left: 0px;}
class=”right”
.right{float:right; padding-top: 10px;
padding-right: 0px;
padding-bottom: 10px;
padding-left: 15px;}