{"id":571,"date":"2019-05-25T19:21:13","date_gmt":"2019-05-26T02:21:13","guid":{"rendered":"http:\/\/www.wendywidgets.com\/ATasteOfTech\/?page_id=571"},"modified":"2023-11-27T19:10:34","modified_gmt":"2023-11-28T03:10:34","slug":"html-css-review","status":"publish","type":"page","link":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/","title":{"rendered":"HTML\/CSS Review"},"content":{"rendered":"\n\n\t<h2><em><strong>HTML\/CSS Review for Website Course<\/strong><\/em><\/h2>\n<h3>Common HTML Tags<\/h3>\n<table>\n    <tbody>\n        <tr>\n            <td id=\"green-box-col1\">&lt;blockquote&gt;<\/td>\n            <td id=\"green-box-col2\">A section that is quoted from another source;<br \/>usually indented and in quotes<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;br&gt;<\/td>\n            <td id=\"green-box-col2\">A single line break; has no end tag<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;container&gt;<\/td>\n            <td id=\"green-box-col2\">A div block that already has preset properties<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;div&gt;<\/td>\n            <td id=\"green-box-col2\">A block\/section containing other HTML; divs can be nested (see glossary)<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;h1&gt;&#8230;&lt;h6&gt;<\/td>\n            <td id=\"green-box-col2\">Headings in decreasing order of importance<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;hr&gt;<\/td>\n            <td id=\"green-box-col2\">A horizontal rule (line) to separate sections;<br \/>has no end tag<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;i&gt;<\/td>\n            <td id=\"green-box-col2\">Italicized text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;p&gt;<\/td>\n            <td id=\"green-box-col2\">A block of paragraph text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;span&gt;<\/td>\n            <td id=\"green-box-col2\">In-line CSS similar to div tag, used to customize words\/phrases within text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;strong&gt;<\/td>\n            <td id=\"green-box-col2\">Bold text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&lt;u&gt;<\/td>\n            <td id=\"green-box-col2\">Underlined text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">&amp;nbsp;<\/td>\n            <td id=\"green-box-col2\">Creates a space that is visible on a web page;<br \/>in HTML all other white space is ignored.<br \/>Not a tag, but helpful anyway!<\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n<h3>HTML Images<\/h3>\n\nThe HTML tag used to link images to a web page is <strong>&lt;img&gt;<\/strong> (this does not have an end tag). \n<br \/>\n\n&lt;img width=&#8221;200&#8243;\n<br \/>&nbsp;&nbsp;src=&#8221;http:\/\/www.fake.com\/laptop.jpg&#8221;\n<br \/>&nbsp;&nbsp;alt=&#8221;Image of laptop&#8221;&gt;\n\nAttributes:\n<table>\n    <tr>\n        <td id=\"green-box-col1\">width=&#8221;200&#8243; or height=&#8221;500&#8243;<\/td>\n        <td id=\"green-box-col2\">Optional. Note that the image is proportional, \n        so typically you either set the width or the height, not both.<\/td>\n    <\/tr>\n    <tr>\n        <td id=\"green-box-col1\">src=&#8221;your address&#8221;<\/td>\n        <td id=\"green-box-col2\">Required. This is the web address of your image.<\/td>\n    <\/tr>\n    <tr>\n        <td id=\"green-box-col1\">alt=&#8221;your words&#8221;<\/td>\n        <td id=\"green-box-col2\">Optional. Provides alternate text for images that for some reason cannot be displayed.<\/td>\n    <\/tr>\n<\/table>\n<h3>HTML Links (or hyperlink)<\/h3>\n\nThe HTML anchor tag <strong>&lt;a&gt;<\/strong> is used to link to a destination URL. \nNote that an end tag is required.\n<br \/>\n\n    &lt;a href=&#8221;www.fake.com\/test.html&#8221;\n    <br \/>&nbsp;&nbsp;target=&#8221;_blank&#8221;&gt;Anchor Text&lt;\/a&gt;\n\nAttributes:\n<table>\n    <tr>\n        <td id=\"green-box-col1\">href=&#8221;your destination&#8221;<\/td>\n        <td id=\"green-box-col2\">Required. Your destination web page.<\/td>\n    <\/tr>\n    <tr>\n        <td id=\"green-box-col1\">target=&#8221;_blank&#8221;<\/td>\n        <td id=\"green-box-col2\">Optional. Opens the link in a new tab.<\/td>\n    <\/tr>\n    <tr>\n        <td id=\"green-box-col1\">Anchor Text<\/td>\n        <td id=\"green-box-col2\">Required. Users click on the anchor text to reach the link target.\n        This might say something like &#8220;Contact Us&#8221;.<\/td>\n    <\/tr>\n<\/table>\n<h3>Common CSS Properties<\/h3>\n<table>\n    <tbody>\n        <tr>\n            <td id=\"green-box-col1\">background-color<\/td>\n            <td id=\"green-box-col2\">Set the background color of a component<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">border<\/td>\n            <td id=\"green-box-col2\">Add a border to an element. Set the width, style and color as follows:\n<br \/>&nbsp;&nbsp;<strong><i>border: 2px solid #eeeeee\n<br \/>&nbsp;&nbsp;border: 1px dashed black<\/i><\/strong>\n<br \/>Other styles: double, dotted<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">border-radius<\/td>\n            <td id=\"green-box-col2\">Round the corners of an element&#8217;s outer border<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">color<\/td>\n            <td id=\"green-box-col2\">Set the color of the text<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">font-family<\/td>\n            <td id=\"green-box-col2\">Specifies the font for an element, such as &#8220;Times New Roman&#8221; or &#8220;Arial&#8221;.\n            Your Weebly theme provides a list of its supported fonts.<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">font-size<\/td>\n            <td id=\"green-box-col2\">Define the size of the text either in pixels (px), or relative to parent element (%),\n            or in em units which is relative to the <i>current<\/i> font-size (2em means twice the size \n            of the current font). Using em makes the font scalable across multiple devices.\n            <\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">font-style<\/td>\n            <td id=\"green-box-col2\">Set font style: normal, italic<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">font-weight<\/td>\n            <td id=\"green-box-col2\">Set the thickness of the text characters: normal, bold, bolder, lighter<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">line-height<\/td>\n            <td id=\"green-box-col2\">Determines the amount of space above and below the text. \n            Helpful when you find lines in paragraphs or multi-line headers too far apart.\n            Typically set in a unitless value (e.g. line-height: 1.5) so that it is proportional to the font-size.<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">margin<\/td>\n            <td id=\"green-box-col2\">Add space around the outside of an element. \n            To center an element, use <br \/> \n            &#8220;margin: 0 auto&#8221;.<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">padding<\/td>\n            <td id=\"green-box-col2\">Clear an area around the content (text, image) inside an element<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">span<\/td>\n            <td id=\"green-box-col2\">Used to group elements for styling purposes (using the class or id attributes).\n            For example, changing color or font weight for certain words within a paragraph &lt;p&gt;.<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">text-align<\/td>\n            <td id=\"green-box-col2\">Specify the horizontal alignment of text in an element (right, left, center)<\/td>\n        <\/tr>\n        <tr>\n            <td id=\"green-box-col1\">width<\/td>\n            <td id=\"green-box-col2\">Set the width of an element not including padding, borders or margins. The <strong><i>min-width<\/i><\/strong> and <strong><i>max-width<\/i><\/strong> properties override the width property. Width can be set as % or in pixels (px).<\/td>\n        <\/tr>\n    <\/tbody>\n<\/table>\n<h3>CSS Hovering<\/h3>\n\nThe <strong>:hover<\/strong> selector is used to select elements when your mouse hovers over them, thereby providing the option to change the styling of the element. \n<br \/><br \/>\nIn this example, an h1 header is black by default, but when hovering over the header the color of the text changes to pink.\n\n\nh1 {\n<br \/>&nbsp;&nbsp;&nbsp;color: black;\n<br \/>}\n<br \/>h1:hover {\n<br \/>&nbsp;&nbsp;&nbsp;color: pink;\n<br \/>}\n\n\n","protected":false},"excerpt":{"rendered":"<p>HTML\/CSS Review for Website Course Common HTML Tags &lt;blockquote&gt; A section that is quoted from another source;usually indented and in&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-571","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HTML\/CSS Review - A Taste of Tech<\/title>\n<meta name=\"description\" content=\"A-Taste-of-Tech offers Website Development boot camps and private classes. This HTML\/CSS list captures what the students will learn during camp.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/html-css-review\\\/\",\"url\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/html-css-review\\\/\",\"name\":\"HTML\\\/CSS Review - A Taste of Tech\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/#website\"},\"datePublished\":\"2019-05-26T02:21:13+00:00\",\"dateModified\":\"2023-11-28T03:10:34+00:00\",\"description\":\"A-Taste-of-Tech offers Website Development boot camps and private classes. This HTML\\\/CSS list captures what the students will learn during camp.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/html-css-review\\\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/html-css-review\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/html-css-review\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\\\/CSS Review\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/#website\",\"url\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/\",\"name\":\"A Taste of Tech\",\"description\":\"empowering girls to embrace technology\",\"publisher\":{\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/#\\\/schema\\\/person\\\/1954d9921aa08828b690e57c838cc280\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/#\\\/schema\\\/person\\\/1954d9921aa08828b690e57c838cc280\",\"name\":\"Wendy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/final_ww_logo.png\",\"url\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/final_ww_logo.png\",\"contentUrl\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/final_ww_logo.png\",\"width\":238,\"height\":238,\"caption\":\"Wendy\"},\"logo\":{\"@id\":\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/final_ww_logo.png\"},\"sameAs\":[\"https:\\\/\\\/wendywidgets.com\\\/ATasteOfTech\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML\/CSS Review - A Taste of Tech","description":"A-Taste-of-Tech offers Website Development boot camps and private classes. This HTML\/CSS list captures what the students will learn during camp.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/","url":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/","name":"HTML\/CSS Review - A Taste of Tech","isPartOf":{"@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/#website"},"datePublished":"2019-05-26T02:21:13+00:00","dateModified":"2023-11-28T03:10:34+00:00","description":"A-Taste-of-Tech offers Website Development boot camps and private classes. This HTML\/CSS list captures what the students will learn during camp.","breadcrumb":{"@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/html-css-review\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wendywidgets.com\/ATasteOfTech\/"},{"@type":"ListItem","position":2,"name":"HTML\/CSS Review"}]},{"@type":"WebSite","@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/#website","url":"https:\/\/wendywidgets.com\/ATasteOfTech\/","name":"A Taste of Tech","description":"empowering girls to embrace technology","publisher":{"@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/#\/schema\/person\/1954d9921aa08828b690e57c838cc280"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wendywidgets.com\/ATasteOfTech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":["Person","Organization"],"@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/#\/schema\/person\/1954d9921aa08828b690e57c838cc280","name":"Wendy","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-content\/uploads\/2019\/06\/final_ww_logo.png","url":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-content\/uploads\/2019\/06\/final_ww_logo.png","contentUrl":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-content\/uploads\/2019\/06\/final_ww_logo.png","width":238,"height":238,"caption":"Wendy"},"logo":{"@id":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-content\/uploads\/2019\/06\/final_ww_logo.png"},"sameAs":["https:\/\/wendywidgets.com\/ATasteOfTech\/"]}]}},"_links":{"self":[{"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/pages\/571","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/comments?post=571"}],"version-history":[{"count":37,"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/pages\/571\/revisions"}],"predecessor-version":[{"id":1598,"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/pages\/571\/revisions\/1598"}],"wp:attachment":[{"href":"https:\/\/wendywidgets.com\/ATasteOfTech\/wp-json\/wp\/v2\/media?parent=571"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}