<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Building our Mood Board :: She Codes by the Beach</title>
    <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/index.html</link>
    <description>Every website on the internet uses HTML. If you’re curious, it stands for Hyper Text Markup Language, and it’s the basic building blocks that tell web browsers how to show text, images, and links on a page. It was first created in the early 1990s, and every website you visit today still uses HTML at its core!&#xA;We can think of HTML as the structure of our page, letting our browser know where content should be found, and how we want to interact with it. Let’s walk through some common elements.</description>
    <generator>Hugo</generator>
    <language>en-au</language>
    <atom:link href="https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Headings</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/1_headings/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/1_headings/index.html</guid>
      <description>Let’s dive a little deeper into headings.&#xA;So far we’ve just used an h1. This is what we would call the top level heading, and there is usually only one of these on the page. We use this tag to show the main title for the page.&#xA;To break up the page into further sections, we can use the rest of the heading elements, h2, h3, h4, h5 and h6.</description>
    </item>
    <item>
      <title>Comments</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/2_comments/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/2_comments/index.html</guid>
      <description>Quite often we want to leave a note in our code to explain what something does (especially if we are new to this). We can do this by writing comments.&#xA;Comments are tags that appear in our code but not on the webpage. This lets us write notes to ourselves about what some code means and what it does.&#xA;A comment looks like this:&#xA;&lt;!-- This is a comment to myself --&gt; You’ll notice we already have one in your body section. Feel free to add more comments to youself as we move through this tutorial.</description>
    </item>
    <item>
      <title>Images</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/3_images/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/3_images/index.html</guid>
      <description>All of the elements we have used so far have had an opening and a closing tag.&#xA;There are a few elements that are self closing. For these tags, instead of having content between an open and close tag, they have content provided as an attribute.&#xA;The image element is a self closing element, and has the tagname img.</description>
    </item>
    <item>
      <title>Div</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/4_div/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/4_div/index.html</guid>
      <description>Great job, we’ve got a page with some content on it, some images and some links. But it’s a bit messy, we want to structure our content so it looks nice on our page.&#xA;Unlike the header and body elements we used earlier, the div (divider) element does not inherently represent anything. Instead, this element is used to group other elements.&#xA;Let’s wrap our 5 images and quote in a div tag:</description>
    </item>
    <item>
      <title>Figures</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/5_figures/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/5_figures/index.html</guid>
      <description>The figure element is similar to a div in that its going to help give us some more structure on our page. The figure tag is used in HTML to group together content like an image, diagram, or code snippet with its caption. It helps keep things organised so the picture and its description always stay connected on the page.&#xA;For now, let’s go through and add the figure tag around each of our image/quotes to pop them in boxes.</description>
    </item>
    <item>
      <title>Bonus HTML Elements</title>
      <link>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/6_more_html_elements/index.html</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      <guid>https://tutorials.shecodes.com.au/html_and_css/2_building_our_mood_board/6_more_html_elements/index.html</guid>
      <description>There’s lots more in HTML that we could cover. We’ve included a few more common ones here.&#xA;Element What it does Example &lt;h1&gt; Adds a big heading to the page &lt;h1&gt;Hello World&lt;/h1&gt; &lt;p&gt; Creates a paragraph of text &lt;p&gt;This is a paragraph.&lt;/p&gt; &lt;a&gt; Makes a hyperlink to another page or website &lt;a href=&#34;https://example.com&#34;&gt;Visit&lt;/a&gt; &lt;img&gt; Displays an image &lt;img src=&#34;cat.jpg&#34; alt=&#34;Cat&#34;&gt; &lt;br&gt; Inserts a line break First line&lt;br&gt;Second line &lt;strong&gt; Makes text bold (for importance) &lt;strong&gt;Important!&lt;/strong&gt; &lt;em&gt; Emphasises text (usually italic) &lt;em&gt;Note this&lt;/em&gt; &lt;ul&gt; Starts an unordered (bulleted) list &lt;ul&gt;&lt;li&gt;Item&lt;/li&gt;&lt;/ul&gt; &lt;ol&gt; Starts an ordered (numbered) list &lt;ol&gt;&lt;li&gt;Item&lt;/li&gt;&lt;/ol&gt; &lt;li&gt; Adds a list item inside &lt;ul&gt; or &lt;ol&gt; &lt;li&gt;Milk&lt;/li&gt; &lt;div&gt; A container for grouping content &lt;div&gt;Content here&lt;/div&gt; &lt;span&gt; Styles or highlights small parts of text &lt;span&gt;Highlight&lt;/span&gt; &lt;figure&gt; Groups images or diagrams with captions &lt;figure&gt;&lt;img src=&#34;pic.jpg&#34;&gt;&lt;figcaption&gt;Caption&lt;/figcaption&gt;&lt;/figure&gt; Challenge! Have a play around with your completed mood board page and see what other HTML elements you could include. We love looking at W3 Schools for a list of inspo to Google.</description>
    </item>
  </channel>
</rss>