{"id":2374,"date":"2017-10-06T04:56:36","date_gmt":"2017-10-06T04:56:36","guid":{"rendered":"http:\/\/isophal.info\/?p=2374"},"modified":"2017-10-06T05:12:17","modified_gmt":"2017-10-06T05:12:17","slug":"unit-02-html-structure-using-lists","status":"publish","type":"post","link":"https:\/\/isophal.com\/news\/2017\/10\/06\/2374.html\/","title":{"rendered":"Unit 02 HTML Structure using lists"},"content":{"rendered":"<h1>1. Introduction<\/h1>\n<pre>&lt;!DOCTYPE html&gt;  \r\n&lt;html&gt;  \t\r\n&lt;head&gt;  \t\t\r\n&lt;title&gt;Soundcloud&lt;\/title&gt;  \t\r\n&lt;\/head&gt;  \t\r\n&lt;body&gt;  \t\t\r\n&lt;p&gt;Electronic&lt;\/p&gt;  \t\r\n&lt;\/body&gt;  \r\n&lt;\/html&gt;\r\n<\/pre>\n<h3>2. Indentation is your friend<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>3. Ordered lists<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Lists&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t\t&lt;h1&gt;List of my favorite things&lt;\/h1&gt;\r\n\t\t\t&lt;ol&gt;\r\n\t\t\t\t&lt;li&gt;raindrops on roses&lt;\/li&gt;\r\n\t\t\t\t&lt;li&gt;whiskas on kittens&lt;\/li&gt;\r\n\t\t\t\t&lt;li&gt;call of duty: modern warfare&lt;\/li&gt;\t\t\t\t\r\n\t\t\t&lt;\/ol&gt;\r\n\t\t&lt;h2&gt;List of things I find OK&lt;\/h2&gt;\r\n\t\t    &lt;ol&gt;\r\n    \t     &lt;li&gt;OK&lt;\/li&gt;\r\n             &lt;li&gt;KO&lt;\/li&gt;  \r\n             &lt;li&gt;OKOK&lt;\/li&gt;\r\n\t\t    &lt;\/ol&gt;\r\n        \r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>4. One more ordered list<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Soundclound&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n     &lt;h3&gt;Most annoying TV celebrities&lt;\/h3&gt;   \r\n     &lt;ol&gt;\r\n         &lt;li&gt;Celeb1&lt;\/li&gt;\r\n         &lt;li&gt;Celeb2&lt;\/li&gt;\r\n         &lt;li&gt;Celeb3&lt;\/li&gt;\r\n     &lt;\/ol&gt;\r\n     &lt;h2&gt;Top 3 things I can do for Mother's Day.&lt;\/h2&gt;\r\n     &lt;ol&gt;\r\n         &lt;li&gt;Be polite&lt;\/li&gt;\r\n         &lt;li&gt;Be honest&lt;\/li&gt;\r\n         &lt;li&gt;Be nice&lt;\/li&gt;\r\n     &lt;\/ol&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>5. Unordered lists<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Unordered Lists&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n     &lt;h1&gt;Some random thoughts&lt;\/h1&gt;\r\n     &lt;p&gt;Lorem Ipsum.&lt;\/p&gt;\r\n     &lt;ul&gt;\r\n         &lt;li&gt;One&lt;\/li&gt;\r\n         &lt;li&gt;Two&lt;\/li&gt;\r\n         &lt;li&gt;Three&lt;\/li&gt;\r\n         &lt;li&gt;Four&lt;\/li&gt;\r\n     &lt;\/ul&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>6. Lists inside a list<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Nested lists&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t\t&lt;ol&gt;\r\n\t\t\t&lt;li&gt;Dad's interests\r\n\t\t\t\t&lt;ul&gt;\r\n\t\t\t\t\t&lt;li&gt;Football&lt;\/li&gt;\r\n\t\t\t\t\t&lt;li&gt;Series&lt;\/li&gt;\r\n\t\t\t\t&lt;\/ul&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t\t&lt;li&gt;Mom's interests\r\n\t\t\t\t&lt;ul&gt;\r\n\t\t\t\t\t&lt;li&gt;Cooking&lt;\/li&gt;\r\n\t\t\t\t\t&lt;li&gt;Series&lt;\/li&gt;\r\n\t\t\t\t&lt;\/ul&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t&lt;\/ol&gt;\r\n\t\t&lt;ol&gt;\r\n    \t &lt;ul&gt;\r\n            &lt;li&gt;Favorite Boys' Names&lt;\/li&gt;\r\n            &lt;ol&gt;\r\n                &lt;li&gt;David&lt;\/li&gt;\r\n                &lt;li&gt;John&lt;\/li&gt;\r\n                &lt;li&gt;Patrick&lt;\/li&gt;\r\n            &lt;\/ol&gt;\r\n            &lt;li&gt;Favorite Girls' Names.&lt;\/li&gt;\r\n            &lt;ol&gt;\r\n                &lt;li&gt;Anna&lt;\/li&gt;\r\n                &lt;li&gt;Maria&lt;\/li&gt;\r\n                &lt;li&gt;Carol&lt;\/li&gt;\r\n            &lt;\/ol&gt;\r\n        &lt;\/ul&gt;\r\n\t\t&lt;\/ol&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>7. Introduction<\/h3>\n<p><b>Make me into a comment<\/b><\/p>\n<pre>&lt;p&gt;But leave me visible to the user!&lt;\/p&gt;\r\n\r\n&lt;!-- comment --&gt;<\/pre>\n<h3>8. Font size<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;First font size change&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t\t&lt;p style = \"font-size: 10px\"&gt; Some text for you to make tiny! &lt;\/p&gt;\r\n\t\t&lt;p style = \"font-size: 20px\"&gt; Some text for you to make normal size!&lt;\/p&gt;\r\n\t\t&lt;p style = \"font-size: 40px\"&gt; Some text for you to make super big!&lt;\/p&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>9. Font color<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;Changing the colors!&lt;\/title&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;h1 style=\"color: green; font-size:16px\"&gt;Big Heading&lt;\/h1&gt;\r\n            &lt;p style=\"color: violet;\"&gt;A giant bear and a little duck were friends.&lt;\/p&gt;\r\n            &lt;p style=\"color: red; font-size:10px\"&gt;But the bear got hungry and ate the duck.&lt;\/p&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>10. Font family<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;Loving the font changes&lt;\/title&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;h1&gt;Big title&lt;\/h1&gt;\r\n         &lt;ol&gt;\r\n            &lt;li style=\"font-family:Arial; font-size:16px\"&gt;This item is big Garamond.&lt;\/li&gt;\r\n            &lt;li style=\"font-family:Verdana; font-size:12px\"&gt;This item is medium Bodoni.&lt;\/li&gt;\r\n            &lt;li style=\"font-family:Impact; font-size:10px\"&gt;This item is small Futura&lt;\/li&gt;\r\n         &lt;\/ol&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>11. Recap<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;Putting it all together&lt;\/title&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;p style=\"font-size: 20px; color: blue; font-family:Arial;\"&gt;A truly spectacular paragraph!&lt;\/p&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>12. Background color<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Sexy background color!&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body style=\"background-color:brown\"&gt;\r\n\t\t&lt;h3&gt;Favorite Football Teams&lt;\/h3&gt;\r\n\t\t\t&lt;ol style=\"background-color:yellow\"&gt;\r\n\t\t\t\t&lt;li&gt;The Hawthorn Football Club&lt;\/li&gt;\t\r\n\t\t\t\t&lt;li&gt;San Franscisco 49ers&lt;\/li&gt;\r\n\t\t\t\t&lt;li&gt;Barcelona FC&lt;\/li&gt;\r\n\t\t\t&lt;\/ol&gt;\t\t\t\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>13. Aligning the text<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n\t&lt;title&gt;Sexy background color!&lt;\/title&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\t&lt;h3 style=\"text-align:center\"&gt;Favorite Football Teams&lt;\/h3&gt;\r\n\t&lt;ol&gt;\r\n\t\t&lt;li style=\"text-aling:left\"&gt;The Hawthorn Football Club&lt;\/li&gt;\t\r\n\t\t&lt;li style=\"text-align:center\"&gt;San Franscisco 49ers&lt;\/li&gt;\r\n\t\t&lt;li style=\"text-align:right\"&gt;Barcelona FC&lt;\/li&gt;\r\n\t&lt;\/ol&gt;\t\t\t\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>14. Strong words!<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;Viva La Revolution!&lt;\/title&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;p&gt;&lt;strong&gt;sing&lt;\/strong&gt;&lt;\/p&gt;\r\n        &lt;p&gt;&lt;strong&gt;too&lt;\/strong&gt;&lt;\/p&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<h3>15. Emphasize words!<\/h3>\n<pre>&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n\t&lt;head&gt;\r\n\t\t&lt;title&gt;Some nice practice&lt;\/title&gt;\r\n\t&lt;\/head&gt;\r\n\t&lt;body&gt;\r\n\t\t&lt;p&gt;Hey, don't say &lt;em&gt;that&lt;\/em&gt;!&lt;\/p&gt;\r\n\t\t&lt;p&gt;I am &lt;em&gt;so&lt;\/em&gt; tired.&lt;\/p&gt;\r\n\t&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1. Introduction &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Soundcloud&lt;\/title&gt;&hellip;<\/p>\n","protected":false},"author":1,"featured_media":2375,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-2374","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html"],"_links":{"self":[{"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/posts\/2374","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/comments?post=2374"}],"version-history":[{"count":7,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/posts\/2374\/revisions"}],"predecessor-version":[{"id":2383,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/posts\/2374\/revisions\/2383"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/media\/2375"}],"wp:attachment":[{"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/media?parent=2374"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/categories?post=2374"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/isophal.com\/news\/wp-json\/wp\/v2\/tags?post=2374"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}