<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>HTML &amp; CSS on Mr. Pointing</title>
    <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/</link>
    <description>Recent content in HTML &amp; CSS on Mr. Pointing</description>
    <generator>Hugo</generator>
    <language>en</language>
    <copyright>&lt;a href=&#34;https://creativecommons.org/licenses/by-nc/4.0/&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;CC BY-NC 4.0&lt;/a&gt;</copyright>
    <lastBuildDate>Tue, 19 May 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://mrpointing.com/notes/computer-science/textbooks/html--css/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>HTML &amp; CSS - Chapter 16</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-16/</link>
      <pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-16/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;images&#34;&gt;Images&lt;/h1&gt;&#xA;&lt;p&gt;To get right into it, we&amp;rsquo;ve already sort of styled images in the past. By passing in a width and height, we directly controlled how our images look. Now that we&amp;rsquo;re in CSS, we can still obviously use those same measurements as a part of our styling sheet;&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-css&#34; data-lang=&#34;css&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;img&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;large&lt;/span&gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;width&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;500&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;height&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;500&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;img&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;medium&lt;/span&gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;width&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;250&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;height&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;250&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;img&lt;/span&gt;.&lt;span style=&#34;color:#a6e22e&#34;&gt;small&lt;/span&gt; {&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;width&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;100&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#x9;&lt;span style=&#34;color:#66d9ef&#34;&gt;height&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;100&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;px&lt;/span&gt;;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;}&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Now that we know some useful tips from the last chapter, we can combine them to help create more interesting layouts with our images. Take the following example, where we use &lt;code&gt;float&lt;/code&gt;, and we make some &lt;code&gt;align&lt;/code&gt; classes;&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 17</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-17/</link>
      <pubDate>Tue, 19 May 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-17/</guid>
      <description>&lt;hr&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 15</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-15/</link>
      <pubDate>Mon, 04 May 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-15/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;layout&#34;&gt;Layout&lt;/h1&gt;&#xA;&lt;p&gt;Another important chapter that we&amp;rsquo;ve been working towards for a few weeks now, styling our &lt;em&gt;layout&lt;/em&gt; means applying styles to how our page is formatted. Like every chapter, this is best studied by applying the following code snippets and messing around with them; don&amp;rsquo;t be afraid to experiment!&lt;/p&gt;&#xA;&lt;p&gt;Before moving into anything new, let&amp;rsquo;s do a quick review on how things work as we understand. We know that each element within a given HTML page is a box. Some of these boxes create new boxes that disrupt the flow of a page, called &lt;em&gt;block-level elements&lt;/em&gt;. These will always begin a new line and be completely separate from one another, like a &lt;code&gt;h1&lt;/code&gt; tag or a &lt;code&gt;p&lt;/code&gt; tag. We also know that some boxes actually blend into the background, and sit wherever used, like when we use the &lt;code&gt;i&lt;/code&gt; tag or the &lt;code&gt;b&lt;/code&gt; tag. These are called &lt;em&gt;inline elements&lt;/em&gt;, and flow nicely between text.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 14</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-14/</link>
      <pubDate>Fri, 10 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-14/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;lists-tables-and-forms&#34;&gt;Lists, Tables and Forms&lt;/h1&gt;&#xA;&lt;p&gt;As we move through the CSS portion of this book, you should start to realize everything we learned in the HTML portion has some CSS style we can apply to it. In this chapter, we&amp;rsquo;ll learn how to start working on our Lists, Tables, and Forms that we learned about in earlier chapters.&lt;/p&gt;&#xA;&lt;h2 id=&#34;lists&#34;&gt;Lists&lt;/h2&gt;&#xA;&lt;p&gt;I already know how popular this is going to be based on how many students have already asked questions about this, so strap in. First off, up until this point we&amp;rsquo;ve been calling each list item a number of bullet point. The more accurate name for that item is called a &lt;em&gt;marker&lt;/em&gt;, and it can be styled in numerous different ways. The first thing we can do is choose a default style type, using &lt;code&gt;list-stlye-type&lt;/code&gt; on our &lt;code&gt;ol&lt;/code&gt; or &lt;code&gt;ul&lt;/code&gt;. Each list type has different style types;&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 13</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-13/</link>
      <pubDate>Tue, 17 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-13/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;boxes&#34;&gt;Boxes&lt;/h1&gt;&#xA;&lt;p&gt;As we know, each of the elements we make has it&amp;rsquo;s own &amp;ldquo;box&amp;rdquo;, or space in which it lives. Controlling your boxes is an integral part of CSS, as most of the styles we&amp;rsquo;ll be making will be control or manipulating these boxes. We&amp;rsquo;re going to look at how to control the dimensions of the boxes, borders, margins &amp;amp; padding, and finally hiding boxes. We&amp;rsquo;ll be positioning our boxes in a later chapter.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 12</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-12/</link>
      <pubDate>Fri, 13 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-12/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;text&#34;&gt;Text&lt;/h1&gt;&#xA;&lt;p&gt;Easily what makes up 90% or more of every web page ever, text is integral to the design of a page. Not just text, but using text with the proper font, size, and spacing is everything. In this chapter, we&amp;rsquo;ll take a look at some text terminology, how to edit and format our text, as well as address some best practice uses of text manipulation.&lt;/p&gt;&#xA;&lt;h2 id=&#34;terminology&#34;&gt;Terminology&lt;/h2&gt;&#xA;&lt;p&gt;Before we get into editing, we need to understand some terms that will help us make better decisions. First up, we need to understand that different fonts use a different &lt;em&gt;typeface&lt;/em&gt;, or the details of the font. We consider a &lt;strong&gt;serif&lt;/strong&gt; font to have extra details at the ends of the main strokes of your letter; &lt;strong&gt;sans-serif&lt;/strong&gt; as main strokes without extra flair, and &lt;strong&gt;monospace&lt;/strong&gt;, where the each character of the font is the same width.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 11</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-11/</link>
      <pubDate>Wed, 11 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-11/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;color&#34;&gt;Color&lt;/h1&gt;&#xA;&lt;p&gt;One of the easiest ways to start making your pages look nice, color can quickly bring together content to look neat and organized. More specifically, choosing a good color scheme is what keeps people on your site rather than a cursory glance. We&amp;rsquo;ll not only look at how to integrate colors, but what good integration of colors looks like.&lt;/p&gt;&#xA;&lt;p&gt;By default, the &lt;code&gt;color&lt;/code&gt; property changes the color of the text within a given element. We&amp;rsquo;ve already seen this used before, but to specify, we have three main ways of giving CSS a color; RGB values, a HEX code, or a color name.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 10</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-10/</link>
      <pubDate>Wed, 04 Mar 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-10/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;introducing-css&#34;&gt;Introducing CSS&lt;/h1&gt;&#xA;&lt;p&gt;The moment we&amp;rsquo;ve all been waiting for, the chapter on CSS. As we&amp;rsquo;ve seen, the HTML language is efficient but not very pretty. After the next few chapters, you&amp;rsquo;ll have a good sense of how to implement design changes to make your pages more appealing. The hard part is not learning CSS; people rarely memorize it or it&amp;rsquo;s nuances. Rather, the hard part is learning &lt;em&gt;good&lt;/em&gt; design. Unfortunately, that cannot be taught as much as it must be acquired by self study. I can show you good and bad, but it&amp;rsquo;s going to take practice to understand how certain attributes work and which are the best to use. Google searches are a must, as people have been using CSS for nearly 30 years, giving you a lot of options for resources.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 9</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-9/</link>
      <pubDate>Mon, 23 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-9/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;video--audio&#34;&gt;Video &amp;amp; Audio&lt;/h1&gt;&#xA;&lt;p&gt;A large portion of this chapter focuses on older version of browsers and their support/lack-of for &lt;em&gt;Flash&lt;/em&gt;, a type of video format to display media on web pages. HTML5 helps us out a lot by providing a &lt;code&gt;video&lt;/code&gt; tag, which we&amp;rsquo;ll go over in a second. Just wanted to point out again just how fast technology is moving.&lt;/p&gt;&#xA;&lt;p&gt;One thing that hasn&amp;rsquo;t changed is the support for video playback formats. Depending on which you are using, formats like HEVC or WebM could not be supported. It&amp;rsquo;s best to use MP4 formatting, as it is the most widely accepted.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 8</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-8/</link>
      <pubDate>Tue, 17 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-8/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;extra-markup&#34;&gt;Extra Markup&lt;/h1&gt;&#xA;&lt;p&gt;There&amp;rsquo;s a lot we left out in the previous chapters. Again, HTML is not a challenging language to pick up and use, but there are some nuances to it we glanced over to just begin writing. In this chapter, we&amp;rsquo;ll quickly go over some of the semi-important things we&amp;rsquo;ve moved past, as well as introduce some more advanced topics before we move into the CSS portion of this course.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 7</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-7/</link>
      <pubDate>Sun, 08 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-7/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;forms&#34;&gt;Forms&lt;/h1&gt;&#xA;&lt;p&gt;Once again, we stumble across another staple of HTML, the &lt;em&gt;form&lt;/em&gt;. We understand any form to be a space where there are boxes or lines that allow user input. These can be in the form of text boxes, drop-down menus, scales, whatever you can think of. Like most HTML elements, the uses are numerous. Whether you&amp;rsquo;re collecting info for a newsletter, or filling out a request form, forms make all of that data collection trivial.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 6</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-6/</link>
      <pubDate>Tue, 03 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-6/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;tables&#34;&gt;Tables&lt;/h1&gt;&#xA;&lt;p&gt;Another staple of HTML pages, tables are used all over the place. Some pages like stock websites or sports information is full of tables, while some might have one or two for a calendar or schedule. Pretty much anytime we have complex data that needs to be displayed, columns and rows are the way to go in most cases. We also call it a &lt;em&gt;grid format&lt;/em&gt;, with each box of the grid being a &lt;em&gt;table cell&lt;/em&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 5</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-5/</link>
      <pubDate>Mon, 02 Feb 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-5/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;images&#34;&gt;Images&lt;/h1&gt;&#xA;&lt;p&gt;Obviously, there are numerous reasons for why we would want to add images to our web pages. How we integrate and present them well, however, is the most important part, and we&amp;rsquo;re going to learn exactly how to do that in this chapter. The first image you see really sets the tone for the rest of the visit with your sight, so choosing the right type of image is key.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 4</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-4/</link>
      <pubDate>Tue, 27 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-4/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;links&#34;&gt;Links&lt;/h1&gt;&#xA;&lt;p&gt;How do we navigate from page to page? Links of course! They&amp;rsquo;re everywhere, and rightfully so. Without links, we&amp;rsquo;d only be able to access pages by typing them into our browser one at a time. That would suck. So today, when you click on a link to something, thank whoever came up with links.&lt;/p&gt;&#xA;&lt;p&gt;This is probably the most complicated tag we&amp;rsquo;ve written, but it&amp;rsquo;s pretty logical. Here&amp;rsquo;s a quick example;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Portfolios</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/portfolios/</link>
      <pubDate>Tue, 27 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/portfolios/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;what-is-a-portfolio&#34;&gt;What is a Portfolio?&lt;/h1&gt;&#xA;&lt;p&gt;Put simply, a portfolio is a collection of work, achievements, projects, and anything else that you might want to show off to the world. Some might think portfolios are only linked to art, but that&amp;rsquo;s only half the picture. People who work in stocks have their own &amp;ldquo;stock portfolios&amp;rdquo; that contain all of the stocks they follow; some athletes keep a highlight reel, which is just a portfolio of videos showing off their best moves. The uses for a portfolio are endless, and the more creative &amp;amp; engaging it is the better impact it will have on those who are looking at it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 3</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-3/</link>
      <pubDate>Wed, 07 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-3/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;lists&#34;&gt;Lists&lt;/h1&gt;&#xA;&lt;p&gt;Used nearly everyday in numerous settings, lists help organize and structure data in a neat and sequential way. There are two main types;&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;Ordered Lists:&lt;/strong&gt; Where each item in the list is ordered in a specific way based on numbers; think of a recipe, or any other set of instructions.&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&lt;strong&gt;Unordered Lists:&lt;/strong&gt; Lists that begin with a bullet point where the order of the content doesn&amp;rsquo;t matter.&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;There&amp;rsquo;s a third, not so often used type we&amp;rsquo;ll quickly look at towards the end.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 2</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-2/</link>
      <pubDate>Mon, 05 Jan 2026 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-2/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;text&#34;&gt;Text&lt;/h1&gt;&#xA;&lt;p&gt;We said that in the last chapter, all HTML is made up of text. Let&amp;rsquo;s break that down a little further; the tags we use are called &lt;em&gt;markup&lt;/em&gt;. We have two types we&amp;rsquo;ll focus on in this chapter:&lt;/p&gt;&#xA;&lt;ol&gt;&#xA;&lt;li&gt;&lt;strong&gt;Structural Markup&lt;/strong&gt;: tags that control or describe the layout of the content/text&lt;/li&gt;&#xA;&lt;li&gt;&lt;strong&gt;Semantic Markup&lt;/strong&gt;: tags that control the design of the sentences/text content provided&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;p&gt;We&amp;rsquo;ll go through a couple of different types of tags and their place in designing our web-pages.&lt;/p&gt;</description>
    </item>
    <item>
      <title>HTML &amp; CSS - Chapter 1</title>
      <link>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-1/</link>
      <pubDate>Mon, 13 Oct 2025 00:00:00 +0000</pubDate>
      <guid>https://mrpointing.com/notes/computer-science/textbooks/html--css/html--css---chapter-1/</guid>
      <description>&lt;hr&gt;&#xA;&lt;h1 id=&#34;structure&#34;&gt;Structure&lt;/h1&gt;&#xA;&lt;p&gt;What do we make websites for? Mostly for online resources of physical things we need and look for in our daily lives. A main component of everything we use and consume is &lt;em&gt;structured&lt;/em&gt;. The structure of our web page takes on many forms, but for now let&amp;rsquo;s focus on the most basic type; the building blocks that construct almost every web page.&lt;/p&gt;&#xA;&lt;p&gt;When thinking about how we should structure our pages, we can always take a look at real life examples in print media for what you&amp;rsquo;re looking for. In it&amp;rsquo;s most basic form, something like a newspaper, we have a title, heading or two, and sub-paragraphs with images or quotes. That&amp;rsquo;s a great place for us to start.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
