0 added
0 removed
Original
2026-01-01
Modified
2026-03-09
1
<blockquote>Meow! I’m just sooo frustrated. The design is lost, and the images are gone!</blockquote><p>This is Muffin - a cat, developer and entrepreneur all in one. And he’s the one we’ll make this page for.</p>
1
<blockquote>Meow! I’m just sooo frustrated. The design is lost, and the images are gone!</blockquote><p>This is Muffin - a cat, developer and entrepreneur all in one. And he’s the one we’ll make this page for.</p>
2
<p>The thing that you deleted on one of his websites turned out to be the “styles.” In short, you disabled the design. To fix this, let’s pretend that we are working on a long-awaited update to the design of the webpage. While we fix things, we will also learn our way around HTML and CSS.</p>
2
<p>The thing that you deleted on one of his websites turned out to be the “styles.” In short, you disabled the design. To fix this, let’s pretend that we are working on a long-awaited update to the design of the webpage. While we fix things, we will also learn our way around HTML and CSS.</p>
3
<p>HTML is responsible for the content of the page. It consists of tags. Each tag consists of a name enclosed between the “less than” and “greater than” signs. Tags look like this: <h1>, <p>, <ul>.</p>
3
<p>HTML is responsible for the content of the page. It consists of tags. Each tag consists of a name enclosed between the “less than” and “greater than” signs. Tags look like this: <h1>, <p>, <ul>.</p>
4
<p>Tags come in two varieties: paired and single. Paired tags can enclose text, as well as other tags. Paired tags, in contrast to single tags, have a second half: the closing tag. The character / (a forward slash) is written before the name in closing tags:</p>
4
<p>Tags come in two varieties: paired and single. Paired tags can enclose text, as well as other tags. Paired tags, in contrast to single tags, have a second half: the closing tag. The character / (a forward slash) is written before the name in closing tags:</p>
5
<h1>Heading text</h1><p>Another useful part of HTML is <b>comments</b>. Text, including code, that is enclosed between the characters <!-- and --> will be ignored and is considered “commented out.” The code will only work if you delete these special characters, which is called “uncommenting.” Comments are typically used to <em>temporarily</em>disable some code, or leave hints and explanations for the next developer (who might be you!).</p>
5
<h1>Heading text</h1><p>Another useful part of HTML is <b>comments</b>. Text, including code, that is enclosed between the characters <!-- and --> will be ignored and is considered “commented out.” The code will only work if you delete these special characters, which is called “uncommenting.” Comments are typically used to <em>temporarily</em>disable some code, or leave hints and explanations for the next developer (who might be you!).</p>
6
<p>You have now learned enough to start fixing the website. Use the new styles that are already waiting for you, commented out in the code.</p>
6
<p>You have now learned enough to start fixing the website. Use the new styles that are already waiting for you, commented out in the code.</p>